Be Responsive

Be Responsive helps you to build smooth and responsive websites by rendering your website in both desktop and mobile view.

Что такое Be Responsive?

Be Responsive - это расширение Chrome, разработанное https://bluetickconsultants.com, и его основная функция - "Be Responsive helps you to build smooth and responsive websites by rendering your website in both desktop and mobile view.".

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

screenshot
screenshot

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

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

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

                        This extension will render your website in both desktop and mobile view simultaneously. This allows users to view and test the responsiveness of web pages across devices without having to navigate to separate pages or resize the browser window.


Make your development Effective
By using Be Responsive                    

Основная информация о расширении

Название Be Responsive Be Responsive
ID pfcbcoagfnebpkdibhobjehbphbkdafh
Официальный URL https://chromewebstore.google.com/detail/be-responsive/pfcbcoagfnebpkdibhobjehbphbkdafh
Описание Be Responsive helps you to build smooth and responsive websites by rendering your website in both desktop and mobile view.
Размер файла 1.53 MB
Количество установок 174
Текущая Версия 1.0
Последнее Обновление 2023-01-13
Дата публикации 2023-01-12
Рейтинг 3.67/5 Всего 3 оценок
Разработчик https://bluetickconsultants.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Be Responsive",
    "description": "Be Responsive helps you to build smooth and responsive websites by rendering your website in both desktop and mobile view.",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": "logo.png",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "background": {
        "service_worker": "static\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "static\/js\/content.js"
            ]
        }
    ]
}