Tamper

Extends the Developer Tools, lets you locally edit files served from the web using Mitmproxy.

Tamper क्या है?

Tamper dutzi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extends the Developer Tools, lets you locally edit files served from the web using Mitmproxy."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tamper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Tamper is a chrome extension that lets you inspect and modify requests made by Google Chrome before they are served to the browser.

IMPORTANT: For Tamper to run you will need to install its companion app using `pip install`, find out more here https://dutzi.github.io/tamper/#install.

---

After installing both the chrome extension and the pyhton package, you will see the Tamper panel in your devtools. Similar to the Network panel, the Tamper panel shows you a list of all requests made by this page. Click on one of these network requests and the response Chrome got will open in your default editor. Make the changes you need and save the file. Once you hit refresh, Tamper will serve Chrome the file you just saved.

---

Tamper is an open source project, based on mitmproxy. Fork us on Github: https://github.com/dutzi/tamper                    

एक्सटेंशन की मूल जानकारी

नाम Tamper Tamper
ID mabhojhgigkmnkppkncbkblecnnanfmd
आधिकारिक URL https://chrome.google.com/webstore/detail/tamper/mabhojhgigkmnkppkncbkblecnnanfmd
विवरण Extends the Developer Tools, lets you locally edit files served from the web using Mitmproxy.
फ़ाइल का आकार 167 KB
स्थापना संख्या 2,764
वर्तमान संस्करण 0.24.8
अंतिम अपडेट 2020-06-12
प्रकाशन तिथि 2020-06-12
रेटिंग 2.95/5 कुल 19 रेटिंग्स
डेवलपर dutzi
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://dutzi.github.io/tamper/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.24.8",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon_off.png",
            "38": "images\/[email protected]"
        },
        "default_title": "Tamper is enabled"
    },
    "commands": {
        "toggle-tamper": {
            "suggested_key": {
                "windows": "Ctrl+Shift+P",
                "mac": "Command+Shift+P"
            },
            "description": "Toggle Tamper"
        }
    },
    "permissions": [
        "nativeMessaging",
        "contextMenus",
        "proxy"
    ],
    "devtools_page": "devtools.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}