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 |
公式URL | 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" ] } |