Switch UA PRO

Take control of your browsing by easily changing your User-Agent with what you want. Selection mode available: Manual, Auto, Random

Switch UA PRO란 무엇입니까?

Switch UA PRO은(는) Matt Glow에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take control of your browsing by easily changing your User-Agent with what you want. Selection mode available: Manual, Auto, Random"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Switch UA PRO 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        With this extension you can choose which UA the sites will see.
Designed for developer to test the web-view by quickly switching between desktop and mobile versions and for users who want more privacy while browsing.

Unlike other similar extensions, this one also intercepts iframes and client-side javascript.

Features:
       - selection of the preferred from a list
       - customization
       - auto-switch every N requests or minutes
       - auto-switch following the "device OS type" rule (to see more, once installed, click on the blue question mark in the popup)

Note:
- to use the extension while browsing incognito, remember to enable the tick during installation or later in the settings section.                    

확장 프로그램 기본 정보

이름 Switch UA PRO Switch UA PRO
ID enjdilojimfgbmcgaanicllleffkijnm
공식 URL https://chromewebstore.google.com/detail/switch-ua-pro/enjdilojimfgbmcgaanicllleffkijnm
설명 Take control of your browsing by easily changing your User-Agent with what you want. Selection mode available: Manual, Auto, Random
파일 크기 103 KB
설치 횟수 123
현재 버전 1.0.1
최근 업데이트 2023-02-17
출시 날짜 2023-02-17
개발자 Matt Glow
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Switch UA PRO",
    "version": "1.0.1",
    "description": "Take control of your browsing by easily changing your User-Agent with what you want. Selection mode available: Manual, Auto, Random",
    "author": "Matt Glow",
    "homepage_url": "https:\/\/github.com\/h3xstone\/switchUAPro",
    "icons": {
        "32": "icons\/logo32.png",
        "48": "icons\/logo48.png",
        "96": "icons\/logo96.png",
        "128": "icons\/logo128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/index.html",
        "default_title": "UA Switcher Pro",
        "default_icon": {
            "32": "icons\/logo32.png",
            "48": "icons\/logo48.png",
            "96": "icons\/logo96.png",
            "128": "icons\/logo128.png"
        }
    },
    "permissions": [
        "declarativeNetRequest",
        "scripting",
        "storage",
        "alarms",
        "webRequest"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js",
                "storage.js",
                "storage2.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "storage.js"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "injectImmediately": true
        }
    ]
}