Tamper Dev

Tamper Dev

Intercept and edit HTTP/HTTPS requests and responses as they happen without the need of a proxy.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tamper Dev",
  "version": "2.0.9",
  "description": "Intercept and edit HTTP/HTTPS requests and responses as they happen without the need of a proxy.",
  "icons": {
    "16": "icons/white.png",
    "48": "icons/96x96.png",
    "128": "icons/256x256.png"
  },
  "browser_action": {
    "default_title": "Tamper Dev",
    "default_icon": {
      "16": "icons/white.png",
      "48": "icons/white.png",
      "128": "icons/256x256.png"
    }
  },
  "background": {
    "page": "background/background.html",
    "persistent": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+T"
      },
      "description": "Open tamper dev for the current tab"
    }
  },
  "minimum_chrome_version": "87",
  "permissions": [
    "debugger",
    "activeTab"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}