User-Agent Switcher and Manager

Spoof websites trying to gather information about your web navigation to deliver distinct content you may not want

Τι είναι το User-Agent Switcher and Manager;

Το User-Agent Switcher and Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rynu.smith, και η κύρια λειτουργία του είναι "Spoof websites trying to gather information about your web navigation to deliver distinct content you may not want".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης User-Agent Switcher and Manager

Λήψη αρχείων επέκτασης User-Agent Switcher and Manager σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        Usage example: You can alter your user-agent string to indicate you?re on a mobile device if you prefer seeing mobile versions of sites so they load quicker.

--

This extension allows you to spoof your browser "user-agent" string to a custom designation, making it impossible for websites to know specific details about your browsing arrangement.

Video overview:
https://www.youtube.com/watch?v=4M6_Zc4o1MQ

Notes:
1. You can easily set custom "user-agent" strings from the toolbar popup
2. The extension uses a two-factor technique to mimic your default "user-agent" string, which is the most reliable method
3. The extension does not use any resources when it is not spoofing the user-agent
4. The extension enables user-agent spoofing on specific domains only; it is conversely possible to exclude certain domains from spoofing. Check the Options page for more info.
5. You can set per-site user-agent strings
6. There is an option to randomize user-agent strings.
7. It is possible to set user-agent string for a single window; you can have a separate user-agent string for each browser window


For more info and general bug reports please use:
https://add0n.com/useragent-switcher.html

For technical bug reports please use:
https://github.com/ray-lothian/UserAgent-Switcher/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα User-Agent Switcher and Manager User-Agent Switcher and Manager
ID bhchdcejhohfmigjafbampogmaanbfkg
Επίσημο URL https://chromewebstore.google.com/detail/user-agent-switcher-and-m/bhchdcejhohfmigjafbampogmaanbfkg
Περιγραφή Spoof websites trying to gather information about your web navigation to deliver distinct content you may not want
Μέγεθος Αρχείου 708 KB
Αριθμός Εγκαταστάσεων 358,544
Τρέχουσα Έκδοση 0.5.0
Τελευταία Ενημέρωση 2023-04-18
Ημερομηνία Δημοσίευσης 2020-03-15
Αξιολόγηση 4.43/5 Συνολικά 193 Αξιολογήσεις
Προγραμματιστής rynu.smith
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://add0n.com/useragent-switcher.html
Διεύθυνση URL της Σελίδας Βοήθειας https://add0n.com/useragent-switcher.html
URL της Σελίδας Πολιτικής Απορρήτου https://add0n.com/policies/rynu.smith.txt
Υποστηριζόμενες Γλώσσες en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "0.5.0",
    "default_locale": "en",
    "description": "__MSG_extensionDescription__",
    "permissions": [
        "storage",
        "",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "contextMenus"
    ],
    "icons": {
        "16": "data\/icons\/active\/16.png",
        "18": "data\/icons\/active\/18.png",
        "19": "data\/icons\/active\/19.png",
        "32": "data\/icons\/active\/32.png",
        "36": "data\/icons\/active\/36.png",
        "38": "data\/icons\/active\/38.png",
        "48": "data\/icons\/active\/48.png",
        "64": "data\/icons\/active\/64.png",
        "128": "data\/icons\/active\/128.png",
        "256": "data\/icons\/active\/256.png"
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "background": {
        "scripts": [
            "ua-parser.min.js",
            "common.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        },
        "default_popup": "data\/popup\/index.html"
    },
    "homepage_url": "https:\/\/add0n.com\/useragent-switcher.html",
    "options_ui": {
        "page": "data\/options\/index.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "match_about_blank": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "data\/inject.js"
            ]
        }
    ]
}