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.
What is Mobile Browser Simulator UserAgent Switcher?
Mobile Browser Simulator UserAgent Switcher is a Chrome extension developed by IBM MobileFirst Platform, and its main feature 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.".
Extension Screenshots
Download Mobile Browser Simulator UserAgent Switcher Extension CRX File
Download Mobile Browser Simulator UserAgent Switcher extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Mobile Browser Simulator UserAgent Switcher |
ID | dcljefehlpjmoefgoohaobehbenocmkg |
Official URL | 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. |
File Size | 47.07 KB |
Installation Count | 3,951 |
Current Version | 1.7 |
Last Updated | 2015-02-27 |
Publish Date | 2015-02-27 |
Rating | 1.91/5 Total 23 Ratings |
Developer | IBM MobileFirst Platform |
Payment Type | free |
Extension Website | http://www.ibm.com/developerworks/mobile/worklight/ |
Help Page URL | http://stackoverflow.com/questions/tagged/worklight |
Supported Languages | 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" ] } |