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ファイルをダウンロード
Mobrem拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" ] } |