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.

Qu'est-ce que Mobile Browser Simulator UserAgent Switcher ?

Mobile Browser Simulator UserAgent Switcher est une extension Chrome développée par IBM MobileFirst Platform, et sa fonction principale est "Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Mobile Browser Simulator UserAgent Switcher

Téléchargez les fichiers d'extension Mobile Browser Simulator UserAgent Switcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Mobile Browser Simulator UserAgent Switcher Mobile Browser Simulator UserAgent Switcher
ID dcljefehlpjmoefgoohaobehbenocmkg
URL Officiel https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg
Description Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.
Taille du Fichier 47.07 KB
Nombre d'Installations 3,951
Version Actuelle 1.7
Dernière Mise à Jour 2015-02-27
Date de Publication 2015-02-27
Évaluation 1.91/5 Total 23 Évaluations
Développeur IBM MobileFirst Platform
Type de Paiement free
Site Web de l'Extension http://www.ibm.com/developerworks/mobile/worklight/
URL de la Page d'Aide http://stackoverflow.com/questions/tagged/worklight
Langues Prises en Charge 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"
    ]
}