Request Interceptor

Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.

Request Interceptor là gì?

Request Interceptor là một tiện ích mở rộng Chrome được phát triển bởi Vinay Kaparthi, và tính năng chính của nó là "Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Request Interceptor 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 helps in building rules(conditions) which when met will help in 

1. redirect/block http requests
2. throttle response of static resources
3. add/modify/delete request/response http headers
4. add/modify/delete http query parameters                    

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

Tên Request Interceptor Request Interceptor
ID bfgblailifedppfilabonohepkofbkpm
URL Chính Thức https://chromewebstore.google.com/detail/request-interceptor/bfgblailifedppfilabonohepkofbkpm
Mô tả Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.
Kích Thước Tệp 1.89 MB
Số Lần Cài Đặt 10,000
Phiên Bản Hiện Tại 1.6.0
Cập Nhật Lần Cuối 2023-10-23
Ngày Phát Hành 2020-06-01
Đánh Giá 4.05/5 Tổng số 55 Đánh Giá
Nhà Phát Triển Vinay Kaparthi
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "author": "Vinay Kumar Kaparthi",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "32": "images\/logo_64.png"
        },
        "default_title": "Request Interceptor"
    },
    "description": "Intercept Requests and add custom rules to modify request\/response headers, block\/redirect requests, modify query params.",
    "icons": {
        "128": "images\/logo_128.png",
        "32": "images\/logo_32.png",
        "48": "images\/logo_48.png",
        "64": "images\/logo_64.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "80",
    "name": "Request Interceptor",
    "options_page": "index.html",
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "unlimitedStorage"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.6.0",
    "content_security_policy": "style-src-elem 'self' 'unsafe-inline' https:\/\/fonts.googleapis.com\/css blob:;style-src 'self' 'unsafe-inline';"
}