Delayed Tab

Delayed Tab

Prevent tabs from loading as long as you do not click on them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "author": "Samir <[email protected]>",
  "version": "1.1.0",
  "icons": {
    "16": "icons/16.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icons/16.png"
  },
  "background": {
    "persistent": false,
    "page": "pages/background.html"
  },
  "default_locale": "en",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "js/content.js"
  ]
}