ModifyAjaxResponse

Modify response text of ajax requests

什麼是ModifyAjaxResponse?

ModifyAjaxResponse是由opponic開發的Chrome擴展程式,該擴展的主要功能是“Modify response text of ajax requests”。

擴展截圖

screenshot

下載ModifyAjaxResponse擴展crx文件

下載ModifyAjaxResponse擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
官方網址 https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
簡介 Modify response text of ajax requests
檔案大小 94.91 KB
安裝次數 96
目前版本 1.6.0
更新時間 2023-11-09
上架時間 2023-06-17
評分 5.00/5 共 1 次評分
開發者 opponic
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/oppoic/ModifyAjaxResponse
說明頁面URL https://github.com/oppoic/ModifyAjaxResponse/issues
支援的語言 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"
    ]
}