ModifyAjaxResponse

Modify response text of ajax requests

Was ist ModifyAjaxResponse?

ModifyAjaxResponse ist eine Chrome-Erweiterung, die von opponic entwickelt wurde, und ihr Hauptmerkmal ist "Modify response text of ajax requests".

Erweiterungsscreenshots

screenshot

ModifyAjaxResponse-Erweiterungs-CRX-Datei herunterladen

Laden Sie ModifyAjaxResponse-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
Offizielle URL https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
Beschreibung Modify response text of ajax requests
Dateigröße 94.91 KB
Installationsanzahl 96
Aktuelle Version 1.6.0
Letztes Update 2023-11-09
Veröffentlichungsdatum 2023-06-17
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler opponic
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/oppoic/ModifyAjaxResponse
Hilfeseite URL https://github.com/oppoic/ModifyAjaxResponse/issues
Unterstützte Sprachen 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"
    ]
}