User-Agent Smart Switcher

Switch easily between platforms and browsers

User-Agent Smart Switcherคืออะไร?

User-Agent Smart Switcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sergei L และคุณลักษณะหลักของมันคือ "Switch easily between platforms and browsers"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย User-Agent Smart Switcher

ดาวน์โหลดไฟล์ส่วนขยาย 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",
        ""
    ]
}