User-Agent Switcher

Switches User-Agent strings to mimic, spoof or fake other browsers or bots.

Qu'est-ce que User-Agent Switcher ?

User-Agent Switcher est une extension Chrome développée par https://www.toolshack.com, et sa fonction principale est "Switches User-Agent strings to mimic, spoof or fake other browsers or bots.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension User-Agent Switcher

Téléchargez les fichiers d'extension User-Agent Switcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        The User Agent Switcher changes your user agent to spoof other devices and/or browsers.  You can put on your IE hat and slip past virtual bouncers into Internet Explorer-only websites; blend in as an iPhone or see how sites render when they think you're Google's search spider.

User-Agent Switcher is simple, yet powerful.  It adds a toolbar button that you can use to toggle between different commonly used user agent strings, or you can enter your own.  

User Agent Switcher overrides Chrome's default user agent, tricking websites into thinking you’re using a different browser.

What’s a User Agent?

A user agent is a small text description of your device that is sent with every web request.  Websites can detect the browser you’re using and serve different content - this is why iPhone and Android users see special mobile websites when they browse the web.                    

Informations de Base sur l'Extension

Nom User-Agent Switcher User-Agent Switcher
ID lkmofgnohbedopheiphabfhfjgkhfcgf
URL Officiel https://chromewebstore.google.com/detail/user-agent-switcher/lkmofgnohbedopheiphabfhfjgkhfcgf
Description Switches User-Agent strings to mimic, spoof or fake other browsers or bots.
Taille du Fichier 24.68 KB
Nombre d'Installations 92,911
Version Actuelle 2.0
Dernière Mise à Jour 2013-03-15
Date de Publication 2013-03-14
Évaluation 3.81/5 Total 361 Évaluations
Développeur https://www.toolshack.com
Type de Paiement free
Site Web de l'Extension http://www.toolshack.com
URL de la Page d'Aide http://www.netapplications.com/support.aspx
Langues Prises en Charge en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "description": "Switches User-Agent strings to mimic, spoof or fake other browsers or bots.",
    "minimum_chrome_version": "17.0",
    "name": "User-Agent Switcher",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "User Agent Switcher"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ]
}