ModifyAjaxResponse

Modify response text of ajax requests

ModifyAjaxResponse là gì?

ModifyAjaxResponse là một tiện ích mở rộng Chrome được phát triển bởi opponic, và tính năng chính của nó là "Modify response text of ajax requests".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ModifyAjaxResponse

Tải xuống các tệp mở rộng ModifyAjaxResponse dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ModifyAjaxResponse ModifyAjaxResponse
ID odpiadnfijfeggnnodoaaphkkjkmpnia
URL Chính Thức https://chromewebstore.google.com/detail/modifyajaxresponse/odpiadnfijfeggnnodoaaphkkjkmpnia
Mô tả Modify response text of ajax requests
Kích Thước Tệp 94.91 KB
Số Lần Cài Đặt 96
Phiên Bản Hiện Tại 1.6.0
Cập Nhật Lần Cuối 2023-11-09
Ngày Phát Hành 2023-06-17
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển opponic
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/oppoic/ModifyAjaxResponse
URL Trang Trợ Giúp https://github.com/oppoic/ModifyAjaxResponse/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}