tweak: mock and modify HTTP requests

tweak: mock and modify HTTP requests

Mock or modify your HTTP requests to test, develop and demo your web application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "tweak: mock and modify HTTP requests",
  "version": "8.2.0",
  "description": "Mock or modify your HTTP requests to test, develop and demo your web application",
  "background": {
    "service_worker": "service-worker.bundle.js"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-tweak-start.png"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "commands": {
    "toggle-tweak-enabled-state": {
      "suggested_key": {
        "default": "Ctrl+Shift+Comma"
      },
      "description": "Runs/Stops the tweak browser extension."
    },
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Period"
      },
      "description": "Opens the extension popup."
    }
  },
  "manifest_version": 3,
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "intercept.bundle.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}