URL Redirect for Developers

URL Redirect for Developers

Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "description": "Allows you to redirect one URL to another. It is intended to help developers debug issues on production websites.",
  "name": "URL Redirect for Developers",
  "short_name": "URL Redirect",
  "version": "1.1",
  "author": "Brian Mock (mockbrian.com)",
  "homepage_url": "https://github.com/wavebeem/url-redirect-webextension",
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "icons": {
    "16": "img/icon-enabled.png",
    "32": "img/[email protected]",
    "128": "img/[email protected]"
  },
  "permissions": [
    "webRequest",
    "webNavigation",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'",
  "background": {
    "scripts": [
      "lib/webextension-polyfill.js",
      "lib/parsimmon.js",
      "src/background.js"
    ]
  },
  "browser_action": {
    "default_title": "URL Redirect",
    "default_icon": {
      "16": "img/icon-enabled.png",
      "32": "img/[email protected]"
    }
  }
}