Mobrem
Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes
Mobrem란 무엇입니까?
Mobrem은(는) nkemcels에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes"입니다.
확장 프로그램 스크린샷
Mobrem 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Mobrem enhances developer experience by emulating mobile browsers, enabling mostly developers to efficiently test their web pages on various screen sizes, including the portrait and landscape orientations without having to regularly toggle the DevTools.
확장 프로그램 기본 정보
이름 | Mobrem |
ID | ioejcchhffpmcjkjmkkgpndhobjbdgml |
공식 URL | https://chromewebstore.google.com/detail/mobrem/ioejcchhffpmcjkjmkkgpndhobjbdgml |
설명 | Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes |
파일 크기 | 103 KB |
설치 횟수 | 1,265 |
현재 버전 | 1.5.3 |
최근 업데이트 | 2020-04-08 |
출시 날짜 | 2020-04-05 |
평점 | 3.40/5 총 5 개의 평점 |
개발자 | nkemcels |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.celsoppe.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mobrem", "description": "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes", "version": "1.5.3", "icons": { "128": "images\/icon_128.png", "48": "images\/icon_48.png", "16": "images\/icon_16.png" }, "browser_action": { "default_title": "Mobrem for responsive design", "default_icon": "images\/icon_20.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "emulator.js" ], "css": [ "emulator.css" ] } ], "background": { "scripts": [ "background_script.js" ], "persistent": true }, "permissions": [ "activeTab", "storage" ] } |