Mobrem

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

Vad är Mobrem?

Mobrem är en Chrome-tillägg utvecklad av nkemcels, och dess huvudfunktion är "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Mobrem-förlängningens CRX-fil

Ladda ner Mobrem-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Mobrem Mobrem
ID ioejcchhffpmcjkjmkkgpndhobjbdgml
Officiell webbadress https://chromewebstore.google.com/detail/mobrem/ioejcchhffpmcjkjmkkgpndhobjbdgml
Beskrivning Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes
Filstorlek 103 KB
Antal Installationer 1,265
Aktuell Version 1.5.3
Senast Uppdaterad 2020-04-08
Publiceringsdatum 2020-04-05
Betyg 3.40/5 Totalt 5 Betyg
Utvecklare nkemcels
Betalningssätt free
Tilläggswebbplats http://www.celsoppe.com
Stödda Språk 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"
    ]
}