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.

Cos'è Mobile Browser Simulator UserAgent Switcher?

Mobile Browser Simulator UserAgent Switcher è un'estensione di Chrome sviluppata da IBM MobileFirst Platform, e la sua funzione principale è "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 dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mobile Browser Simulator UserAgent Switcher

Scarica i file di estensione Mobile Browser Simulator UserAgent Switcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Mobile Browser Simulator UserAgent Switcher Mobile Browser Simulator UserAgent Switcher
ID dcljefehlpjmoefgoohaobehbenocmkg
URL Ufficiale https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg
Descrizione Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.
Dimensione del File 47.07 KB
Conteggio Installazioni 3,951
Versione Corrente 1.7
Ultimo Aggiornamento 2015-02-27
Data di Pubblicazione 2015-02-27
Valutazione 1.91/5 Totale 23 Valutazioni
Sviluppatore IBM MobileFirst Platform
Tipo di Pagamento free
Sito Web dell'Estensione http://www.ibm.com/developerworks/mobile/worklight/
URL della Pagina di Aiuto http://stackoverflow.com/questions/tagged/worklight
Lingue Supportate 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"
    ]
}