Request X

Intercept requests and cookies by flexible rules.

Request Xとは何ですか?

Request Xはgera2ldによって開発されたChromeの拡張機能で、その主な機能は「Intercept requests and cookies by flexible rules.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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.                    

拡張機能の基本情報

名前 Request X Request X
ID cblonkdlnemhdeefhmaoiijjaedcphbf
公式URL 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
Eメール [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": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "alarms",
        "cookies"
    ]
}