Tampery

Tamper browser requests in flight

What is Tampery?

Tampery is a Chrome extension developed by Rongjian Zhang, and its main feature is "Tamper browser requests in flight".

Extension Screenshots

screenshot
screenshot
screenshot

Download Tampery Extension CRX File

Download Tampery extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Tampery is a browser extension to tamper browser requests in flight. It is programmable, which means you could write your own script to intercept, block, or modify browser requests.

Source code:

https://github.com/pd4d10/tampery                    

Extension Basic Information

Name Tampery Tampery
ID bipnikifgdamlhpdkkmoaiokbgfkeapl
Official URL https://chrome.google.com/webstore/detail/tampery/bipnikifgdamlhpdkkmoaiokbgfkeapl
Description Tamper browser requests in flight
File Size 2.66 MB
Installation Count 36
Current Version 0.0.4
Last Updated 2018-07-11
Publish Date 2018-07-11
Rating 5.00/5 Total 1 Ratings
Developer Rongjian Zhang
Email [email protected]
Payment Type free
Extension Website https://github.com/pd4d10/tampery
Help Page URL https://github.com/pd4d10/tampery
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tampery",
    "version": "0.0.4",
    "minimum_chrome_version": "63",
    "description": "Tamper browser requests in flight",
    "homepage_url": "https:\/\/github.com\/pd4d10\/tampery",
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ]
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "",
        "storage"
    ],
    "browser_action": {
        "default_popup": "dist\/popup.html"
    }
}