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 - это расширение Chrome, разработанное IBM MobileFirst Platform, и его основная функция - "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

Скачать файл CRX расширения Mobile Browser Simulator UserAgent Switcher

Скачайте файлы расширений 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"
    ]
}