HTTP Request Blocker and Delayer

HTTP Request Blocker and Delayer

This's a devtools extension to introduce delay or blocking for http requests, based on configuration of URL patterns and delay time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "author": "Liang Shaozhan",
  "name": "HTTP Request Blocker and Delayer",
  "description": "This's a devtools extension to introduce delay or blocking for http requests, based on configuration of URL patterns and delay time",
  "version": "1.0.1",
  "icons": {
    "16": "logo.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "webRequest",
    "*://*/*",
    "webRequestBlocking"
  ],
  "devtools_page": "devtoolpage.html"
}