ModifyAjaxResponse

Modify response text of ajax requests

Cos'è ModifyAjaxResponse?

ModifyAjaxResponse è un'estensione di Chrome sviluppata da opponic, e la sua funzione principale è "Modify response text of ajax requests".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ModifyAjaxResponse

Scarica i file di estensione ModifyAjaxResponse 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

                        This extension only overrides the response data in the XMLHTTPRequest object as well as the fetch method. The real response which you can see in DevTools Network panel will not be modified

https://github.com/oppoic/ModifyAjaxResponse                    

Informazioni di Base sull'Estensione

Nome ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
URL Ufficiale https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
Descrizione Modify response text of ajax requests
Dimensione del File 94.91 KB
Conteggio Installazioni 96
Versione Corrente 1.6.0
Ultimo Aggiornamento 2023-11-09
Data di Pubblicazione 2023-06-17
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore opponic
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/oppoic/ModifyAjaxResponse
URL della Pagina di Aiuto https://github.com/oppoic/ModifyAjaxResponse/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ModifyAjaxResponse",
    "description": "Modify response text of ajax requests",
    "version": "1.6.0",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "images\/16.png",
            "32": "images\/32.png",
            "48": "images\/48.png",
            "128": "images\/128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/dist\/pageInjectScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}