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.
Was ist Mobile Browser Simulator UserAgent Switcher?
Mobile Browser Simulator UserAgent Switcher ist eine Chrome-Erweiterung, die von IBM MobileFirst Platform entwickelt wurde, und ihr Hauptmerkmal ist "Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.".
Erweiterungsscreenshots
Mobile Browser Simulator UserAgent Switcher-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mobile Browser Simulator UserAgent Switcher-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Mobile Browser Simulator UserAgent Switcher |
ID | dcljefehlpjmoefgoohaobehbenocmkg |
Offizielle URL | https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg |
Beschreibung | Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute. |
Dateigröße | 47.07 KB |
Installationsanzahl | 3,951 |
Aktuelle Version | 1.7 |
Letztes Update | 2015-02-27 |
Veröffentlichungsdatum | 2015-02-27 |
Bewertung | 1.91/5 Insgesamt 23 Bewertungen |
Entwickler | IBM MobileFirst Platform |
Zahlungsart | free |
Erweiterungswebsite | http://www.ibm.com/developerworks/mobile/worklight/ |
Hilfeseite URL | http://stackoverflow.com/questions/tagged/worklight |
Unterstützte Sprachen | 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" ] } |