Redirect Helper

Redirect Helper

The best way to intercept HTTP requests and redirect URLs

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Redirect Helper",
  "description": "The best way to intercept HTTP requests and redirect URLs",
  "version": "0.001",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "24": "images/icon24.png",
      "32": "images/icon32.png",
      "48": "images/icon48.png",
      "128": "images/128.png"
    },
    "default_popup": "popup-extension/build/index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "declarativeNetRequest",
    "webRequest",
    "storage",
    "notifications"
  ]
}