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
官方網址 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
        }
    ]
}