Mobrem

Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes

What is Mobrem?

Mobrem is a Chrome extension developed by nkemcels, and its main feature is "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes".

Extension Screenshots

screenshot
screenshot
screenshot

Download Mobrem Extension CRX File

Download Mobrem extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Mobrem Mobrem
ID ioejcchhffpmcjkjmkkgpndhobjbdgml
Official URL https://chromewebstore.google.com/detail/mobrem/ioejcchhffpmcjkjmkkgpndhobjbdgml
Description Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes
File Size 103 KB
Installation Count 1,265
Current Version 1.5.3
Last Updated 2020-04-08
Publish Date 2020-04-05
Rating 3.40/5 Total 5 Ratings
Developer nkemcels
Payment Type free
Extension Website http://www.celsoppe.com
Supported Languages 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"
    ]
}