NoRefer

Set and exclude HTTP headers on all requests

O que é NoRefer?

NoRefer é uma extensão do Chrome desenvolvida por djb, e sua principal característica é "Set and exclude HTTP headers on all requests".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NoRefer

Baixe arquivos de extensão NoRefer 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

                        NoRefer

https://github.com/c475/NoRefer

Enter one header and optional replacement value per line




To block an HTTP header from your requests:

===================================

Referer

===================================


To spoof an HTTP header in your requests:

===================================

Referer: https://somegarbagewebsite.com/

===================================




Exclude all headers starting with "Accept" (the # signals a Regular Expression):

===================================

#Accept.*

===================================



Make all headers starting with "Accept" a particular value:

===================================

#Accept.*: SomeValue

===================================



All regular expressions are generally permitted, except ones containing ':' because it breaks the parser




A full example config and explanation of what it does:

===================================

#Accept.*: SomeValue
Referer
User-Agent: CoolAgent4000
#Co.*

===================================

1. All headers starting with "Accept" will have the value "SomeValue"
2. "Referer" will be removed from your request headers
3. "User-Agent" headers will have the value "CoolAgent4000"
4. All headers starting with "Co" will be removed from your request headers                    

Informações Básicas da Extensão

Nome NoRefer NoRefer
ID iokokaclomnglegfinhjjpmmgeacccki
URL Oficial https://chromewebstore.google.com/detail/norefer/iokokaclomnglegfinhjjpmmgeacccki
Descrição Set and exclude HTTP headers on all requests
Tamanho do Arquivo 22.46 KB
Contagem de Instalações 554
Versão Atual 1.5
Última Atualização 2019-03-30
Data de Publicação 2019-03-29
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor djb
Tipo de Pagamento free
Site da Extensão https://github.com/c475/NoRefer
URL da Página de Ajuda https://github.com/c475/NoRefer
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoRefer",
    "description": "Set and exclude HTTP headers on all requests",
    "version": "1.5",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "cat16.png",
        "default_title": "NoRefer",
        "default_popup": "panel.html"
    },
    "icons": {
        "16": "cat16.png",
        "48": "cat48.png",
        "128": "cat128.png"
    }
}