ModifyAjaxResponse

Modify response text of ajax requests

Apa itu ModifyAjaxResponse?

ModifyAjaxResponse adalah ekstensi Chrome yang dikembangkan oleh opponic, dan fitur utamanya adalah "Modify response text of ajax requests".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi ModifyAjaxResponse

Unduh file ekstensi ModifyAjaxResponse dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
URL Resmi https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
Deskripsi Modify response text of ajax requests
Ukuran File 94.91 KB
Jumlah Instalasi 96
Versi Saat Ini 1.6.0
Terakhir Diperbarui 2023-11-09
Tanggal Publikasi 2023-06-17
Penilaian 5.00/5 Total 1 Penilaian
Pengembang opponic
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/oppoic/ModifyAjaxResponse
URL Halaman Bantuan https://github.com/oppoic/ModifyAjaxResponse/issues
Bahasa yang Didukung 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"
    ]
}