Browser Proxy

Replace fetch, XMLHttpRequest, AJAX responses on the fly!

Browser Proxy là gì?

Browser Proxy là một tiện ích mở rộng Chrome được phát triển bởi boikovladislav, và tính năng chính của nó là "Replace fetch, XMLHttpRequest, AJAX responses on the fly!".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

                        Browser-Proxy allows you to mock responses of AJAX requests without leaving the browser on pages where you enabled it. You can choose what requests shall be overwritten, or even mock not yet existing APIs. You can change the response, status code, delay, response headers, set up chunking and use parts of the request as part of the response. It also lets you to share these mocks with someone though import and export, and all of this with a nice UI.


- Change the response of fetch, XMLHttpRequest, Axios and other AJAX requests on the fly.
- Mock Responses of not yet existing requests.
- RegExp based rules for url, body or headers to decide what requests to override.
- Import and export the overrides into JSON file to share in team.
- Individual enabling and disabling of overrides on different sites, and grouping into folders.
- Part of the request can be used as part of the response.
- Mock file download interactions with chunking and custom delays.
- Works offline.
- Open source.

For more details and documentation and source code visit:
https://github.com/Vladislav-Boiko/browser-proxy



--------------------------------------------
Change notes:
1.0.3 Added response highlighting and negation filter, fixed chunks duplication and variables removement bugs 
1.0.2 Fixed communication between background scripts and popup in chrome v95+
1.0.1 Removed permissions for clipboard copy according to the google review process
1.0.0 initial release                    

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

Tên Browser Proxy Browser Proxy
ID hkcmldhlcecbmbofhpnfdpfengmccjgc
URL Chính Thức https://chromewebstore.google.com/detail/browser-proxy/hkcmldhlcecbmbofhpnfdpfengmccjgc
Mô tả Replace fetch, XMLHttpRequest, AJAX responses on the fly!
Kích Thước Tệp 2.54 MB
Số Lần Cài Đặt 65
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2023-03-11
Ngày Phát Hành 2021-08-26
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển boikovladislav
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Vladislav-Boiko/browser-proxy
URL Trang Trợ Giúp https://github.com/Vladislav-Boiko/browser-proxy/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Browser proxy",
    "name": "Browser Proxy",
    "version": "1.0.3",
    "manifest_version": 3,
    "description": "Replace fetch, XMLHttpRequest, AJAX responses on the fly!",
    "action": {
        "default_icon": "logo-disabled64.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "logo16.png",
        "32": "logo32.png",
        "64": "logo64.png",
        "128": "logo128.png",
        "192": "logo192.png",
        "512": "logo512.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "devtools_page": "popup.html",
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": true,
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "src\/injected.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}