ModifyAjaxResponse

Modify response text of ajax requests

Vad är ModifyAjaxResponse?

ModifyAjaxResponse är en Chrome-tillägg utvecklad av opponic, och dess huvudfunktion är "Modify response text of ajax requests".

Tilläggsskärmbilder

screenshot

Ladda ner ModifyAjaxResponse-förlängningens CRX-fil

Ladda ner ModifyAjaxResponse-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
Officiell webbadress https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
Beskrivning Modify response text of ajax requests
Filstorlek 94.91 KB
Antal Installationer 96
Aktuell Version 1.6.0
Senast Uppdaterad 2023-11-09
Publiceringsdatum 2023-06-17
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare opponic
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/oppoic/ModifyAjaxResponse
Hjälpsida URL https://github.com/oppoic/ModifyAjaxResponse/issues
Stödda Språk 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"
    ]
}