Web Rewriter

Create rules to rewrite network traffic

Cos'è Web Rewriter?

Web Rewriter è un'estensione di Chrome sviluppata da https://jottocraft.com, e la sua funzione principale è "Create rules to rewrite network traffic".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Web Rewriter

Scarica i file di estensione Web Rewriter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Web Rewriter is a development tool that allows you to intercept and modify API requests (XMLHttpRequest, fetch, and WebSocket messages) for debugging and testing.                    

Informazioni di Base sull'Estensione

Nome Web Rewriter Web Rewriter
ID mofnjmjakjkabbjmhdhcaklpfpodjjem
URL Ufficiale https://chromewebstore.google.com/detail/web-rewriter/mofnjmjakjkabbjmhdhcaklpfpodjjem
Descrizione Create rules to rewrite network traffic
Dimensione del File 79.06 KB
Conteggio Installazioni 31
Versione Corrente 4.0.1
Ultimo Aggiornamento 2022-08-30
Data di Pubblicazione 2021-04-12
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://jottocraft.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://rewrite.jottocraft.com
URL della Pagina di Aiuto https://jottocraft.com/feedback
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "$schema": "https:\/\/json.schemastore.org\/chrome-manifest",
    "manifest_version": 3,
    "name": "Web Rewriter",
    "description": "Create rules to rewrite network traffic",
    "version": "4.0.1",
    "homepage_url": "https:\/\/rewrite.jottocraft.com",
    "icons": {
        "16": "assets\/16.png",
        "32": "assets\/32.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/rewrite.jottocraft.com\/*",
                "https:\/\/satella.staging.hq.jottocraft.com\/*",
                "http:\/\/localhost:3000\/*"
            ],
            "js": [
                "injector.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "hook.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/rewrite.jottocraft.com\/*",
            "https:\/\/satella.staging.hq.jottocraft.com\/*",
            "http:\/\/localhost:3000\/*"
        ]
    },
    "background": {
        "service_worker": "worker.js"
    },
    "permissions": [
        "storage"
    ],
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlAxaAL8e1cwtp52mL231vLAb87oxOhjxaYLXmvmHz7BsQzFuvBzYyHpErzEvWEmpJZ\/X56RABZggrEE11XgnRxLNcGyUuqL3pNlOcutrSN3\/5452IBKscX5Qh8VWJ6MG6K+cPek3CvC2Rerd0ywJkz7kj4GCI1b0dQET9pJjMWgNX+O0X4rY7Lsaofurtc6PHjFQBYXxWQoizvYiVm6bc6HnfG6Eyf2nyu3+FNW5nAcBmLBMBCy7UWnOAI5wIx8Ti4kjw9Pfy2Ha5ncIADwM9nIv42gIKI0E7t4+F81OJesYUWujpmTB2fmbwzLKMhnblWqi\/UFcelVAs5LagwBCgQIDAQAB"
}