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”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Mobrem
ID ioejcchhffpmcjkjmkkgpndhobjbdgml
官方網址 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"
    ]
}