Examine source code of Request Interceptor

Inspect and view changes in Request Interceptor source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "author": "Vinay Kumar Kaparthi",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "images/logo_64.png"
    },
    "default_title": "Request Interceptor"
  },
  "description": "Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.",
  "icons": {
    "32": "images/logo_32.png",
    "48": "images/logo_48.png",
    "64": "images/logo_64.png",
    "128": "images/logo_128.png"
  },
  "manifest_version": 2,
  "minimum_chrome_version": "80",
  "name": "Request Interceptor",
  "options_page": "index.html",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*",
    "storage",
    "unlimitedStorage"
  ],
  "version": "1.2.0",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}