User-Agent Switcher

Switches User-Agent strings to mimic, spoof or fake other browsers or bots.

O que é User-Agent Switcher?

User-Agent Switcher é uma extensão do Chrome desenvolvida por https://www.toolshack.com, e sua principal característica é "Switches User-Agent strings to mimic, spoof or fake other browsers or bots.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão User-Agent Switcher

Baixe arquivos de extensão User-Agent Switcher 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

                        The User Agent Switcher changes your user agent to spoof other devices and/or browsers.  You can put on your IE hat and slip past virtual bouncers into Internet Explorer-only websites; blend in as an iPhone or see how sites render when they think you're Google's search spider.

User-Agent Switcher is simple, yet powerful.  It adds a toolbar button that you can use to toggle between different commonly used user agent strings, or you can enter your own.  

User Agent Switcher overrides Chrome's default user agent, tricking websites into thinking you’re using a different browser.

What’s a User Agent?

A user agent is a small text description of your device that is sent with every web request.  Websites can detect the browser you’re using and serve different content - this is why iPhone and Android users see special mobile websites when they browse the web.                    

Informações Básicas da Extensão

Nome User-Agent Switcher User-Agent Switcher
ID lkmofgnohbedopheiphabfhfjgkhfcgf
URL Oficial https://chromewebstore.google.com/detail/user-agent-switcher/lkmofgnohbedopheiphabfhfjgkhfcgf
Descrição Switches User-Agent strings to mimic, spoof or fake other browsers or bots.
Tamanho do Arquivo 24.68 KB
Contagem de Instalações 92,911
Versão Atual 2.0
Última Atualização 2013-03-15
Data de Publicação 2013-03-14
Classificação 3.81/5 Total de 361 Avaliações
Desenvolvedor https://www.toolshack.com
Tipo de Pagamento free
Site da Extensão http://www.toolshack.com
URL da Página de Ajuda http://www.netapplications.com/support.aspx
Idiomas Suportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Switches User-Agent strings to mimic, spoof or fake other browsers or bots.",
    "minimum_chrome_version": "17.0",
    "name": "User-Agent Switcher",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "User Agent Switcher"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ]
}