Tamper Data Chrome Page

Websites using Certificate Pinning (e.g., some banking or mobile apps) will reject Burp’s certificate. Workaround requires patched Chrome or advanced tools.

"Tamper Data" was once a popular Firefox extension for intercepting HTTP requests. Today, Chrome doesn't have a direct equivalent, but you can achieve the same (and more) using Developer Tools, network throttling, and dedicated interception proxies. tamper data chrome

Here's how to modify requests and responses in real-time using Chrome's built-in tools and external software. Websites using Certificate Pinning (e


  "manifest_version": 3,
  "name": "Tamper Data - Request Interceptor",
  "version": "1.0.0",
  "description": "Intercept and modify HTTP request headers before they are sent.",
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": 
    "service_worker": "background.js"
  ,
  "action": 
    "default_popup": "popup.html",
    "default_title": "Tamper Data",
    "default_icon": 
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
,
  "icons": 
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  ,
  "minimum_chrome_version": "88"