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.
Wat is Mobile Browser Simulator UserAgent Switcher?
Mobile Browser Simulator UserAgent Switcher is een Chrome-extensie ontwikkeld door IBM MobileFirst Platform, en de belangrijkste functie is "Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.".
Extensie Screenshots
Download het CRX-bestand van de extensie Mobile Browser Simulator UserAgent Switcher
Download Mobile Browser Simulator UserAgent Switcher-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Mobile Browser Simulator UserAgent Switcher |
ID | dcljefehlpjmoefgoohaobehbenocmkg |
Officiële URL | https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg |
Beschrijving | Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute. |
Bestandsgrootte | 47.07 KB |
Aantal Installaties | 3,951 |
Huidige Versie | 1.7 |
Laatst Bijgewerkt | 2015-02-27 |
Publicatiedatum | 2015-02-27 |
Beoordeling | 1.91/5 Totaal 23 Beoordelingen |
Ontwikkelaar | IBM MobileFirst Platform |
Betalingswijze | free |
Extensiewebsite | http://www.ibm.com/developerworks/mobile/worklight/ |
Help Pagina-URL | http://stackoverflow.com/questions/tagged/worklight |
Ondersteunde Talen | 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" ] } |