Ajax Proxy

Modify your Ajax response to test

Ajax Proxy là gì?

Ajax Proxy là một tiện ích mở rộng Chrome được phát triển bởi Gj, và tính năng chính của nó là "Modify your Ajax response to test".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Ajax Proxy 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

                        面向开发者的工具,用于 Web 端接口数据的修改

Features:

1. Support request protocol interception 支持请求协议拦截
2. Support status code adjustment 支持状态码调整
3. instant response without refreshing 无需刷新,即时响应
4. data backup/restore 数据备份/恢复
5. tagging, filtering, JSON editing and other functions 标签、筛选、JSON、函数式编辑等功能                    

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

Tên Ajax Proxy Ajax Proxy
ID jbikjaejnjfbloojafllmdiknfndgljo
URL Chính Thức https://chromewebstore.google.com/detail/ajax-proxy/jbikjaejnjfbloojafllmdiknfndgljo
Mô tả Modify your Ajax response to test
Kích Thước Tệp 835 KB
Số Lần Cài Đặt 1,367
Phiên Bản Hiện Tại 2.2.10
Cập Nhật Lần Cuối 2024-02-18
Ngày Phát Hành 2021-05-19
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Gj
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/g0ngjie/ajax-proxy
Ngôn Ngữ Được Hỗ Trợ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Ajax Proxy",
    "version": "2.2.10",
    "description": "Modify your Ajax response to test",
    "author": "Gj",
    "icons": {
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage",
        "notifications",
        "tabs"
    ],
    "action": {
        "default_icon": "icons\/48g.png"
    },
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "commands": {
        "open_panel": {
            "suggested_key": {
                "default": "Shift+Alt+Q",
                "windows": "Shift+Alt+Q",
                "mac": "Shift+Alt+Q",
                "linux": "Shift+Alt+Q"
            },
            "description": "Open panel"
        },
        "close_panel": {
            "suggested_key": {
                "default": "Shift+Alt+C",
                "windows": "Shift+Alt+C",
                "mac": "Shift+Alt+C",
                "linux": "Shift+Alt+C"
            },
            "description": "Close panel"
        },
        "full_screen": {
            "suggested_key": {
                "default": "Shift+Alt+W",
                "windows": "Shift+Alt+W",
                "mac": "Shift+Alt+W",
                "linux": "Shift+Alt+W"
            },
            "description": "Full screen"
        },
        "resize_window": {
            "suggested_key": {
                "default": "Shift+Alt+S",
                "windows": "Shift+Alt+S",
                "mac": "Shift+Alt+S",
                "linux": "Shift+Alt+S"
            },
            "description": "Resize screen"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "document.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}