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" ] } |