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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον 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 της επέκτασης Switch UA PRO

Λήψη αρχείων επέκτασης Switch UA PRO σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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
        }
    ]
}