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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Switch UA PRO एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
        }
    ]
}