Disable Links

Disable Links

Disable all links on the page to avoid distractions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Disable Links",
  "version": "0.0.0.2",
  "permissions": [
    "activeTab",
    "scripting",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "homepage_url": "https://becausecurious.me/contact",
  "browser_specific_settings": {
    "gecko": {
      "id": "{8a55e6be-3bef-4750-96d9-9c2fd3f55a12}"
    }
  },
  "icons": {
    "128": "icon_on128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "description": "Disable all links on the page to avoid distractions.",
  "action": {
    "default_title": "Disable Links"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  }
}