Request Interceptor
Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.
什麼是Request Interceptor?
Request Interceptor是由Vinay Kaparthi開發的Chrome擴展程式,該擴展的主要功能是“Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params.”。
擴展截圖
下載Request Interceptor擴展crx文件
下載Request Interceptor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Request Interceptor |
ID | bfgblailifedppfilabonohepkofbkpm |
官方網址 | https://chromewebstore.google.com/detail/request-interceptor/bfgblailifedppfilabonohepkofbkpm |
簡介 | Intercept Requests and add custom rules to modify request/response headers, block/redirect requests, modify query params. |
檔案大小 | 1.89 MB |
安裝次數 | 10,000 |
目前版本 | 1.6.0 |
更新時間 | 2023-10-23 |
上架時間 | 2020-06-01 |
評分 | 4.05/5 共 55 次評分 |
開發者 | Vinay Kaparthi |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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';" } |