Request Interceptor

Request Interceptor

Intercept HTTP and HTTPS Requests. Add custom rules to modify request/response headers, block/redirect requests, modify query params. Example Usage: This extension can be used to block all ads having url (*/ad.x.com/*) by creating rules

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "Vinay Kumar Kaparthi",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "38": "images/logo_48.png"
    },
    "default_title": "Request Interceptor"
  },
  "description": "Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.",
  "icons": {
    "48": "images/logo_48.png",
    "64": "images/logo_64.png",
    "128": "images/logo_128.png"
  },
  "manifest_version": 2,
  "name": "Request Interceptor",
  "options_page": "index.html",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage"
  ],
  "version": "1.5.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "{59a5e07a-5406-401e-886c-6cc8dbf8260c}"
    }
  }
}