ModifyAjaxResponse

Modify response text of ajax requests

Wat is ModifyAjaxResponse?

ModifyAjaxResponse is een Chrome-extensie ontwikkeld door opponic, en de belangrijkste functie is "Modify response text of ajax requests".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie ModifyAjaxResponse

Download ModifyAjaxResponse-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
Officiële URL https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
Beschrijving Modify response text of ajax requests
Bestandsgrootte 94.91 KB
Aantal Installaties 96
Huidige Versie 1.6.0
Laatst Bijgewerkt 2023-11-09
Publicatiedatum 2023-06-17
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar opponic
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/oppoic/ModifyAjaxResponse
Help Pagina-URL https://github.com/oppoic/ModifyAjaxResponse/issues
Ondersteunde Talen 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"
    ]
}