URL Shift

URL Shift

Intercept HTTP requests through rules written in JavaScript.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "URL Shift",
  "version": "0.4.2",
  "description": "Intercept HTTP requests through rules written in JavaScript.",
  "homepage_url": "https://github.com/alchemy-works/url-shift",
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "options_ui": {
    "page": "options/index.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": "icon-48.png",
    "default_title": "URL Shift"
  },
  "sandbox": {
    "pages": [
      "options/sandbox.html"
    ]
  },
  "icons": {
    "48": "icon.png"
  }
}