Mobile Browser Simulator UserAgent Switcher

Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.

什么是Mobile Browser Simulator UserAgent Switcher?

Mobile Browser Simulator UserAgent Switcher是由IBM MobileFirst Platform开发的Chrome扩展程序,该扩展的主要功能是“Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.”。

扩展截图

screenshot

下载Mobile Browser Simulator UserAgent Switcher扩展crx文件

下载Mobile Browser Simulator UserAgent Switcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        IBM Mobile Browser Simulator UserAgent Switcher changes the useragent per device in the Mobile Browser Simulator. The UserAgent Switcher extension is for use in the IBM MobileFirst Mobile Browser Simulator only.                    

扩展基本信息

名称 Mobile Browser Simulator UserAgent Switcher Mobile Browser Simulator UserAgent Switcher
ID dcljefehlpjmoefgoohaobehbenocmkg
官方URL https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg
简介 Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.
文件大小 47.07 KB
安装次数 3,951
当前版本 1.7
更新时间 2015-02-27
上架时间 2015-02-27
评分 1.91/5 共23次评分
开发者 IBM MobileFirst Platform
付费类型 free
扩展官网 http://www.ibm.com/developerworks/mobile/worklight/
帮助页面URL http://stackoverflow.com/questions/tagged/worklight
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.7",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "minimum_chrome_version": "17",
    "default_locale": "en",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*MobileBrowserSimulator\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "lib\/dojo\/dojo.js",
                "observer.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "lib\/dojo\/dojo.js",
                "inject.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/logo_16.png",
        "48": "images\/logo_48.png",
        "128": "images\/logo_128.png"
    },
    "web_accessible_resources": [
        "dojo_useragent.js"
    ]
}