User-Agent Switcher

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

Что такое User-Agent Switcher?

User-Agent Switcher - это расширение Chrome, разработанное https://www.toolshack.com, и его основная функция - "Switches User-Agent strings to mimic, spoof or fake other browsers or bots.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения User-Agent Switcher

Скачайте файлы расширений User-Agent Switcher в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название User-Agent Switcher User-Agent Switcher
ID lkmofgnohbedopheiphabfhfjgkhfcgf
Официальный URL https://chromewebstore.google.com/detail/user-agent-switcher/lkmofgnohbedopheiphabfhfjgkhfcgf
Описание Switches User-Agent strings to mimic, spoof or fake other browsers or bots.
Размер файла 24.68 KB
Количество установок 92,911
Текущая Версия 2.0
Последнее Обновление 2013-03-15
Дата публикации 2013-03-14
Рейтинг 3.81/5 Всего 361 оценок
Разработчик https://www.toolshack.com
Тип оплаты free
Официальный сайт расширения http://www.toolshack.com
URL страницы помощи http://www.netapplications.com/support.aspx
Поддерживаемые языки 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
        }
    ]
}