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.
什麼是Mobile Browser Simulator UserAgent Switcher?
Mobile Browser Simulator UserAgent Switcher是由IBM MobileFirst Platform開發的Chrome擴展程式,該擴展的主要功能是“Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute.”。
擴展截圖
下載Mobile Browser Simulator UserAgent Switcher擴展crx文件
下載Mobile Browser Simulator UserAgent Switcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Mobile Browser Simulator UserAgent Switcher |
ID | dcljefehlpjmoefgoohaobehbenocmkg |
官方網址 | https://chromewebstore.google.com/detail/mobile-browser-simulator/dcljefehlpjmoefgoohaobehbenocmkg |
簡介 | Listens for changes to a DOM node attribute in a page and sets the browser's useragent according to the contents of that attribute. |
檔案大小 | 47.07 KB |
安裝次數 | 3,951 |
目前版本 | 1.7 |
更新時間 | 2015-02-27 |
上架時間 | 2015-02-27 |
評分 | 1.91/5 共 23 次評分 |
開發者 | IBM MobileFirst Platform |
付費類型 | free |
擴展官網 | http://www.ibm.com/developerworks/mobile/worklight/ |
說明頁面URL | http://stackoverflow.com/questions/tagged/worklight |
支援的語言 | 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" ] } |