User-Agent Smart Switcher

Switch easily between platforms and browsers

什么是User-Agent Smart Switcher?

User-Agent Smart Switcher是由Sergei L开发的Chrome扩展程序,该扩展的主要功能是“Switch easily between platforms and browsers”。

扩展截图

screenshot
screenshot
screenshot

下载User-Agent Smart Switcher扩展crx文件

下载User-Agent Smart Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 User-Agent Smart Switcher User-Agent Smart Switcher
ID dgdmfclijcondkaobmpgbmibaaocfdpj
官方URL https://chrome.google.com/webstore/detail/user-agent-smart-switcher/dgdmfclijcondkaobmpgbmibaaocfdpj
简介 Switch easily between platforms and browsers
文件大小 16.19 KB
安装次数 10,000
当前版本 1.4.1
更新时间 2021-05-21
上架时间 2020-03-16
评分 4.86/5 共57次评分
开发者 Sergei L
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/srgl/ua-smart-switcher
帮助页面URL https://github.com/srgl/ua-smart-switcher
支持的语言 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",
        ""
    ]
}