Tamper

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

Apa itu Tamper?

Tamper adalah ekstensi Chrome yang dikembangkan oleh dutzi, dan fitur utamanya adalah "Extends the Developer Tools, lets you locally edit files served from the web using Mitmproxy.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Tamper

Unduh file ekstensi Tamper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Tamper Tamper
ID mabhojhgigkmnkppkncbkblecnnanfmd
URL Resmi https://chrome.google.com/webstore/detail/tamper/mabhojhgigkmnkppkncbkblecnnanfmd
Deskripsi Extends the Developer Tools, lets you locally edit files served from the web using Mitmproxy.
Ukuran File 167 KB
Jumlah Instalasi 2,764
Versi Saat Ini 0.24.8
Terakhir Diperbarui 2020-06-12
Tanggal Publikasi 2020-06-12
Penilaian 2.95/5 Total 19 Penilaian
Pengembang dutzi
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://dutzi.github.io/tamper/
Bahasa yang Didukung 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'"
}