User-Agent Smart Switcher

Switch easily between platforms and browsers

Cos'è User-Agent Smart Switcher?

User-Agent Smart Switcher è un'estensione di Chrome sviluppata da Sergei L, e la sua funzione principale è "Switch easily between platforms and browsers".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione User-Agent Smart Switcher

Scarica i file di estensione User-Agent Smart Switcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome User-Agent Smart Switcher User-Agent Smart Switcher
ID dgdmfclijcondkaobmpgbmibaaocfdpj
URL Ufficiale https://chrome.google.com/webstore/detail/user-agent-smart-switcher/dgdmfclijcondkaobmpgbmibaaocfdpj
Descrizione Switch easily between platforms and browsers
Dimensione del File 16.19 KB
Conteggio Installazioni 10,000
Versione Corrente 1.4.1
Ultimo Aggiornamento 2021-05-21
Data di Pubblicazione 2020-03-16
Valutazione 4.86/5 Totale 57 Valutazioni
Sviluppatore Sergei L
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/srgl/ua-smart-switcher
URL della Pagina di Aiuto https://github.com/srgl/ua-smart-switcher
Lingue Supportate 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",
        ""
    ]
}