Mobrem
Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes
Co to jest Mobrem?
Mobrem to rozszerzenie Chrome opracowane przez nkemcels, a jego główną funkcją jest „Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mobrem
Pobierz pliki rozszerzeń Mobrem w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Mobrem |
ID | ioejcchhffpmcjkjmkkgpndhobjbdgml |
Oficjalny URL | https://chromewebstore.google.com/detail/mobrem/ioejcchhffpmcjkjmkkgpndhobjbdgml |
Opis | Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes |
Rozmiar pliku | 103 KB |
Liczba instalacji | 1,265 |
Aktualna Wersja | 1.5.3 |
Ostatnia Aktualizacja | 2020-04-08 |
Data Publikacji | 2020-04-05 |
Ocena | 3.40/5 Łącznie 5 Oceny |
Deweloper | nkemcels |
Typ Płatności | free |
Strona Rozszerzenia | http://www.celsoppe.com |
Obsługiwane Języki | 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" ] } |