Asset Swapper

Asset Swapper

Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Asset Swapper",
  "short_name": "URL Swapper",
  "version": "1.1.4",
  "description": "Extension allows to redirect any http request to any destination. Useful for debugging or blocking certain scripts.",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "asset_swapper_icon_128.png",
    "default_popup": "index.html"
  },
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "icons": {
    "16": "asset_swapper_icon_16.png",
    "48": "asset_swapper_icon_48.png",
    "128": "asset_swapper_icon_128.png"
  }
}