Request X

Intercept requests and cookies by flexible rules.

O que é Request X?

Request X é uma extensão do Chrome desenvolvida por gera2ld, e sua principal característica é "Intercept requests and cookies by flexible rules.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Request X

Baixe arquivos de extensão Request X no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Request X Request X
ID cblonkdlnemhdeefhmaoiijjaedcphbf
URL Oficial https://chromewebstore.google.com/detail/request-x/cblonkdlnemhdeefhmaoiijjaedcphbf
Descrição Intercept requests and cookies by flexible rules.
Tamanho do Arquivo 90.07 KB
Contagem de Instalações 5,047
Versão Atual 2.5.2
Última Atualização 2022-08-24
Data de Publicação 2019-06-04
Classificação 4.83/5 Total de 18 Avaliações
Desenvolvedor gera2ld
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gera2ld/request-x
URL da Página de Ajuda https://github.com/gera2ld/request-x/issues
Idiomas Suportados 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"
    ]
}