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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |