Request RegEx Filter

Request RegEx Filter

This Add-on will filter all HTTP requests (including requests for javascript files, images etc) based on the list of regular expressions the user provides. The addon works off of a Deny-list configured via the Options/Settings page for the Addon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Filter HTTP request with regex",
  "manifest_version": 2,
  "name": "Request RegEx Filter",
  "version": "1.1resigned1",
  "applications": {
    "gecko": {
      "id": "{a2c52af7-1cdd-4540-8d3b-ce73abfa7200}",
      "strict_min_version": "55.0"
    }
  },
  "permissions": [
    "webRequest",
    "<all_urls>",
    "storage",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html"
  }
}