User-Agent Switcher

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

User-Agent Switcherとは何ですか?

User-Agent Switcherはhttps://www.toolshack.comによって開発されたChromeの拡張機能で、その主な機能は「Switches User-Agent strings to mimic, spoof or fake other browsers or bots.」です。

拡張機能のスクリーンショット

screenshot
screenshot

User-Agent Switcher拡張機能のCRXファイルをダウンロード

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