Internal Redirector

Internal Redirector

Internal Redirector allows you to selectively redirect requests to another location using regular expressions. 1.3.0 Updates: *…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Internal Redirector",
  "version": "1.3",
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "https://*/*",
    "http://*/*",
    "http://fonts.googleapis.com/*"
  ],
  "icons": {
    "16": "images/16.png",
    "48": "images/32.png",
    "128": "images/128.png"
  },
  "manifest_version": 2,
  "browser_action": {
    "default_icon": {
      "19": "images/19-disabled.png",
      "38": "images/38-disabled.png"
    }
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}