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 to jest Mobile Browser Simulator UserAgent Switcher?
Mobile Browser Simulator UserAgent Switcher to rozszerzenie Chrome opracowane przez IBM MobileFirst Platform, a jego główną funkcją jest „Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mobile Browser Simulator UserAgent Switcher
Pobierz pliki rozszerzeń Mobile Browser Simulator UserAgent Switcher w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Mobile Browser Simulator UserAgent Switcher |
ID | dcljefehlpjmoefgoohaobehbenocmkg |
Oficjalny URL | https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg |
Opis | Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute. |
Rozmiar pliku | 47.07 KB |
Liczba instalacji | 3,951 |
Aktualna Wersja | 1.7 |
Ostatnia Aktualizacja | 2015-02-27 |
Data Publikacji | 2015-02-27 |
Ocena | 1.91/5 Łącznie 23 Oceny |
Deweloper | IBM MobileFirst Platform |
Typ Płatności | free |
Strona Rozszerzenia | http://www.ibm.com/developerworks/mobile/worklight/ |
Adres URL Strony Pomocy | http://stackoverflow.com/questions/tagged/worklight |
Obsługiwane Języki | 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" ] } |