User-Agent Smart Switcher

Switch easily between platforms and browsers

What is User-Agent Smart Switcher?

User-Agent Smart Switcher is a Chrome extension developed by Sergei L, and its main feature is "Switch easily between platforms and browsers".

Extension Screenshots

screenshot
screenshot
screenshot

Download User-Agent Smart Switcher Extension CRX File

Download User-Agent Smart Switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name User-Agent Smart Switcher User-Agent Smart Switcher
ID dgdmfclijcondkaobmpgbmibaaocfdpj
Official URL https://chrome.google.com/webstore/detail/user-agent-smart-switcher/dgdmfclijcondkaobmpgbmibaaocfdpj
Description Switch easily between platforms and browsers
File Size 16.19 KB
Installation Count 10,000
Current Version 1.4.1
Last Updated 2021-05-21
Publish Date 2020-03-16
Rating 4.86/5 Total 57 Ratings
Developer Sergei L
Email [email protected]
Payment Type free
Extension Website https://github.com/srgl/ua-smart-switcher
Help Page URL https://github.com/srgl/ua-smart-switcher
Supported Languages 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",
        ""
    ]
}