Mobrem

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

Cos'è Mobrem?

Mobrem è un'estensione di Chrome sviluppata da nkemcels, e la sua funzione principale è "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Mobrem

Scarica i file di estensione Mobrem in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Mobrem Mobrem
ID ioejcchhffpmcjkjmkkgpndhobjbdgml
URL Ufficiale https://chromewebstore.google.com/detail/mobrem/ioejcchhffpmcjkjmkkgpndhobjbdgml
Descrizione Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes
Dimensione del File 103 KB
Conteggio Installazioni 1,265
Versione Corrente 1.5.3
Ultimo Aggiornamento 2020-04-08
Data di Pubblicazione 2020-04-05
Valutazione 3.40/5 Totale 5 Valutazioni
Sviluppatore nkemcels
Tipo di Pagamento free
Sito Web dell'Estensione http://www.celsoppe.com
Lingue Supportate 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"
    ]
}