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.

Apa itu Mobile Browser Simulator UserAgent Switcher?

Mobile Browser Simulator UserAgent Switcher adalah ekstensi Chrome yang dikembangkan oleh IBM MobileFirst Platform, dan fitur utamanya adalah "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 Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Mobile Browser Simulator UserAgent Switcher

Unduh file ekstensi Mobile Browser Simulator UserAgent Switcher dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Mobile Browser Simulator UserAgent Switcher Mobile Browser Simulator UserAgent Switcher
ID dcljefehlpjmoefgoohaobehbenocmkg
URL Resmi https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg
Deskripsi Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.
Ukuran File 47.07 KB
Jumlah Instalasi 3,951
Versi Saat Ini 1.7
Terakhir Diperbarui 2015-02-27
Tanggal Publikasi 2015-02-27
Penilaian 1.91/5 Total 23 Penilaian
Pengembang IBM MobileFirst Platform
Tipe Pembayaran free
Situs Ekstensi http://www.ibm.com/developerworks/mobile/worklight/
URL Halaman Bantuan http://stackoverflow.com/questions/tagged/worklight
Bahasa yang Didukung 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"
    ]
}