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
电子邮箱 [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"
    ]
}