Block Unreachable Scripts

Block Unreachable Scripts

Prevent unreachable servers from stalling websites by disabling their scripts for 5 minutes if they previously could not load.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extensionName__",
  "author": "Terry Yuen",
  "version": "0.4",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "19": "page_19.png",
    "38": "page_38.png",
    "48": "page_48.png",
    "96": "page_96.png"
  },
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "browser_style": true,
    "default_icon": {
      "19": "page_19.png",
      "38": "page_38.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_ui": {
    "chrome_style": true,
    "page": "options.html"
  }
}