User-Agent Smart Switcher

Switch easily between platforms and browsers

O que é User-Agent Smart Switcher?

User-Agent Smart Switcher é uma extensão do Chrome desenvolvida por Sergei L, e sua principal característica é "Switch easily between platforms and browsers".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

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

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

                        Support desktop and mobile browsers.
Daily user agent strings updates, no need to update them manually.

Source code: https://github.com/srgl/ua-smart-switcher

Icons made by Freepik from www.flaticon.com is licensed by CC 3.0 BY.                    

Informações Básicas da Extensão

Nome User-Agent Smart Switcher User-Agent Smart Switcher
ID dgdmfclijcondkaobmpgbmibaaocfdpj
URL Oficial https://chrome.google.com/webstore/detail/user-agent-smart-switcher/dgdmfclijcondkaobmpgbmibaaocfdpj
Descrição Switch easily between platforms and browsers
Tamanho do Arquivo 16.19 KB
Contagem de Instalações 10,000
Versão Atual 1.4.1
Última Atualização 2021-05-21
Data de Publicação 2020-03-16
Classificação 4.86/5 Total de 57 Avaliações
Desenvolvedor Sergei L
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/srgl/ua-smart-switcher
URL da Página de Ajuda https://github.com/srgl/ua-smart-switcher
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "User-Agent Smart Switcher",
    "description": "Switch easily between platforms and browsers",
    "version": "1.4.1",
    "author": "Sergei L",
    "icons": {
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "storage",
        ""
    ]
}