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
公式URL 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
Eメール [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"
    ]
}