Request X
Intercept requests and cookies by flexible rules.
什麼是Request X?
Request X是由gera2ld開發的Chrome擴展程式,該擴展的主要功能是“Intercept requests and cookies by flexible rules.”。
擴展截圖
下載Request X擴展crx文件
下載Request X擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Source code: https://github.com/gera2ld/request-x
Features:
- Block requests by methods and URL patterns
- Maintainable lists
- Easy to share your lists with others
- Redirect requests
- Modify headers
- Modify cookie properties like SameSite
Use cases:
- Debug APIs but avoid unexpected mutations
- Block unwanted contents in an extremely flexible way
- Set authorization header to avoid inputing username/password again and again
- Set CORS header to allow certain cross-site requests without server changes
- Change SameSite for old services to work on latest browsers
- ...
Tested on Chrome >= 70. It is highly recommended to use on latest versions. 擴展基本資訊
| 名稱 | |
| ID | cblonkdlnemhdeefhmaoiijjaedcphbf |
| 官方網址 | https://chromewebstore.google.com/detail/request-x/cblonkdlnemhdeefhmaoiijjaedcphbf |
| 簡介 | Intercept requests and cookies by flexible rules. |
| 檔案大小 | 90.07 KB |
| 安裝次數 | 5,047 |
| 目前版本 | 2.5.2 |
| 更新時間 | 2022-08-24 |
| 上架時間 | 2019-06-04 |
| 評分 | 4.83/5 共 18 次評分 |
| 開發者 | gera2ld |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/gera2ld/request-x |
| 說明頁面URL | https://github.com/gera2ld/request-x/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Request X",
"version": "2.5.2",
"minimum_chrome_version": "50",
"manifest_version": 2,
"description": "Intercept requests and cookies by flexible rules.",
"author": {
"name": "Gerald",
"url": "https:\/\/gerald.top"
},
"icons": {
"16": "public\/images\/icon_16.png",
"48": "public\/images\/icon_48.png",
"128": "public\/images\/icon_128.png"
},
"default_locale": "en",
"browser_action": {
"browser_style": true,
"default_icon": {
"19": "public\/images\/icon_19.png",
"38": "public\/images\/icon_38.png"
},
"default_title": "Request X",
"default_popup": "popup\/index.html"
},
"background": {
"scripts": [
"browser.js",
"handler.js"
]
},
"options_ui": {
"page": "options\/index.html",
"open_in_tab": true
},
"devtools_page": "devtools\/index.html",
"permissions": [
" | |