Random User-Agent (Switcher)

Automatically change the user agent after specified period of time to a randomly selected one, thus hiding your real user agent

Τι είναι το Random User-Agent (Switcher);

Το Random User-Agent (Switcher) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://rua.is-an.app, και η κύρια λειτουργία του είναι "Automatically change the user agent after specified period of time to a randomly selected one, thus hiding your real user agent".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        User-Agent - a string that is sent along to any website you visit. This is a sort of "fingerprint" your browser leaves behind which contains:

⭐️ The name and version of your browser
⭐️ The name of the operating system (Mac, Windows, Linux, etc.) and its version
⭐️ Information about some plugins installed on the browser
⭐️ Other information that identifies and exposes you

🚀 This extension has been created to stop data leakage and emulate different devices in the simplest way!

It automatically replaces User-Agent strings after a specified period of time with a randomized one. User-Agent strings can also be set manually. The extension is incredibly lightweight, using very few resources. User-Agent randomization can be customized by the user (what browsers and OS are spoofed, etc.). Exceptions list available with the option of wildcards. Protects against Javascript exploits to hide your identity and protect your anonymity.

Completely free and with no ads.

Made with ❤️ Source code: https://github.com/tarampampam/random-user-agent

💸 For commercial offers, please email me at [email protected]                    

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

Όνομα Random User-Agent (Switcher) Random User-Agent (Switcher)
ID einpaelgookohagofgnnkcfjbkkgepnp
Επίσημο URL https://chromewebstore.google.com/detail/random-user-agent-switche/einpaelgookohagofgnnkcfjbkkgepnp
Περιγραφή Automatically change the user agent after specified period of time to a randomly selected one, thus hiding your real user agent
Μέγεθος Αρχείου 108 KB
Αριθμός Εγκαταστάσεων 207,477
Τρέχουσα Έκδοση 3.18.0
Τελευταία Ενημέρωση 2023-07-21
Ημερομηνία Δημοσίευσης 2020-05-04
Αξιολόγηση 4.52/5 Συνολικά 301 Αξιολογήσεις
Προγραμματιστής https://rua.is-an.app
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/tarampampam/random-user-agent
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/tarampampam/random-user-agent/issues?q=is%3Aissue
Υποστηριζόμενες Γλώσσες id,de,en,fr,vi,tr,es,pl,pt-BR,ru,uk,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_manifest_name__",
    "version": "3.18.0",
    "author": "https:\/\/github.com\/tarampampam",
    "homepage_url": "https:\/\/github.com\/tarampampam\/random-user-agent",
    "default_locale": "en",
    "description": "__MSG_manifest_description__",
    "icons": {
        "16": "icons\/logo\/16.png",
        "48": "icons\/logo\/48.png",
        "128": "icons\/logo\/128.png"
    },
    "minimum_chrome_version": "49.0",
    "incognito": "spanning",
    "browser_action": {
        "default_icon": "icons\/logo\/48.png",
        "default_popup": "popup.html",
        "default_title": "__MSG_manifest_action_default_title__"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "js\/content-script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "commands": {
        "renew-useragent": {
            "description": "__MSG_manifest_command_renew_useragent__",
            "suggested_key": {
                "default": "Ctrl+Shift+U"
            }
        }
    }
}