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.
O que é Mobile Browser Simulator UserAgent Switcher?
Mobile Browser Simulator UserAgent Switcher é uma extensão do Chrome desenvolvida por IBM MobileFirst Platform, e sua principal característica é "Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Mobile Browser Simulator UserAgent Switcher
Baixe arquivos de extensão Mobile Browser Simulator UserAgent Switcher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Mobile Browser Simulator UserAgent Switcher |
ID | dcljefehlpjmoefgoohaobehbenocmkg |
URL Oficial | https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg |
Descrição | Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute. |
Tamanho do Arquivo | 47.07 KB |
Contagem de Instalações | 3,951 |
Versão Atual | 1.7 |
Última Atualização | 2015-02-27 |
Data de Publicação | 2015-02-27 |
Classificação | 1.91/5 Total de 23 Avaliações |
Desenvolvedor | IBM MobileFirst Platform |
Tipo de Pagamento | free |
Site da Extensão | http://www.ibm.com/developerworks/mobile/worklight/ |
URL da Página de Ajuda | http://stackoverflow.com/questions/tagged/worklight |
Idiomas Suportados | 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" ] } |