NoCrastination

NoCrastination

Good Luck on finals!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NoCrastination",
  "description": "Good Luck on finals!",
  "version": "1.0.1",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "tabs",
    "declarativeNetRequest",
    "alarms",
    "notifications",
    "offscreen"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background_worker.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "hello_extensions.png",
        "block.html",
        "block.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "hello_extensions.png"
  }
}