User-Agent Switcher

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

User-Agent Switcher là gì?

User-Agent Switcher là một tiện ích mở rộng Chrome được phát triển bởi https://www.toolshack.com, và tính năng chính của nó là "Switches User-Agent strings to mimic, spoof or fake other browsers or bots.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng User-Agent Switcher

Tải xuống các tệp mở rộng User-Agent Switcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên User-Agent Switcher User-Agent Switcher
ID lkmofgnohbedopheiphabfhfjgkhfcgf
URL Chính Thức https://chromewebstore.google.com/detail/user-agent-switcher/lkmofgnohbedopheiphabfhfjgkhfcgf
Mô tả Switches User-Agent strings to mimic, spoof or fake other browsers or bots.
Kích Thước Tệp 24.68 KB
Số Lần Cài Đặt 92,911
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2013-03-15
Ngày Phát Hành 2013-03-14
Đánh Giá 3.81/5 Tổng số 361 Đánh Giá
Nhà Phát Triển https://www.toolshack.com
Loại Thanh Toán free
Trang Web Mở Rộng http://www.toolshack.com
URL Trang Trợ Giúp http://www.netapplications.com/support.aspx
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}