AD12 Unblocker

AD12 Unblocker

Quickly get to the HTTPS version of blocked pages on Adams12 computers. Warning: crude and quick implementation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "AD12 Unblocker",
  "version": "0.71",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://192.168.*.*/cgi/block.cgi*"
      ],
      "js": [
        "jquery-1.8.3.min.js",
        "content-script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "description": "Quickly get to the HTTPS version of blocked pages on Adams12 computers. Warning: crude and quick implementation. ",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_icon": "icon16.png",
    "default_title": "This page is being blocked."
  },
  "permissions": [
    "tabs",
    "*://*/*"
  ]
}