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.
Co je Mobile Browser Simulator UserAgent Switcher?
Mobile Browser Simulator UserAgent Switcher je rozšíření Chrome vyvinuté IBM MobileFirst Platform, a jeho hlavní funkcí je „Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Mobile Browser Simulator UserAgent Switcher
Stáhněte si soubory rozšíření Mobile Browser Simulator UserAgent Switcher ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Mobile Browser Simulator UserAgent Switcher |
ID | dcljefehlpjmoefgoohaobehbenocmkg |
Oficiální URL | https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg |
Popis | Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute. |
Velikost souboru | 47.07 KB |
Počet instalací | 3,951 |
Aktuální Verze | 1.7 |
Poslední Aktualizace | 2015-02-27 |
Datum Vydání | 2015-02-27 |
Hodnocení | 1.91/5 Celkem 23 Hodnocení |
Vývojář | IBM MobileFirst Platform |
Typ Platby | free |
Webové stránky Rozšíření | http://www.ibm.com/developerworks/mobile/worklight/ |
URL Stránky Nápovědy | http://stackoverflow.com/questions/tagged/worklight |
Podporované Jazyky | 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" ] } |