Mobrem

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

Что такое Mobrem?

Mobrem - это расширение Chrome, разработанное nkemcels, и его основная функция - "Mobile browser emulator mainly for testing the responsiveness of web pages on various mobile screen sizes".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Mobrem

Скачайте файлы расширений Mobrem в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}