Examine source code of Study and Browsing Countdown Timer for Microsoft Edge™

Inspect and view changes in Study and Browsing Countdown Timer for Microsoft Edge™ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Study and Browsing Countdown Timer for Microsoft Edgeâ„¢",
  "description": "Simple timer to keep track of your study/browing time.",
  "version": "3.0.1.5",
  "manifest_version": 3,
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "timer",
    "default_popup": "index.html"
  },
  "offline_enabled": true,
  "options_page": "alarm.html",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "permissions": [
    "tabs",
    "scripting",
    "notifications",
    "activeTab",
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "./img/*",
        "./sound/*"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "js/state.js",
        "js/common.js",
        "js/alarmPopup.js",
        "js/script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}