Mobrem

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

Mobrem क्या है?

Mobrem nkemcels द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mobrem एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}