Bootstrap Viewport

Displays the current Bootstrap Viewport

Что такое Bootstrap Viewport?

Bootstrap Viewport - это расширение Chrome, разработанное serhat-m, и его основная функция - "Displays the current Bootstrap Viewport".

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

screenshot

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

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

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

                        Determines which Bootstrap viewport is active based on the width. Tested with Bootstrap v5.                    

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

Название Bootstrap Viewport Bootstrap Viewport
ID hbbkilahnbjmfhmfpckjpamaicggokje
Официальный URL https://chromewebstore.google.com/detail/bootstrap-viewport/hbbkilahnbjmfhmfpckjpamaicggokje
Описание Displays the current Bootstrap Viewport
Размер файла 15.01 KB
Количество установок 659
Текущая Версия 0.2.1
Последнее Обновление 2023-06-05
Дата публикации 2022-11-10
Рейтинг 4.67/5 Всего 3 оценок
Разработчик serhat-m
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bootstrap Viewport",
    "version": "0.2.1",
    "description": "Displays the current Bootstrap Viewport",
    "action": {
        "default_title": "Bootstrap Viewport",
        "default_popup": ".\/html\/popup.html"
    },
    "icons": {
        "16": ".\/bin\/img\/symbol16.png",
        "48": ".\/bin\/img\/symbol48.png",
        "128": ".\/bin\/img\/symbol128.png"
    },
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "content_scripts": [
        {
            "css": [
                ".\/css\/bs-viewport.css"
            ],
            "js": [
                ".\/js\/bs-viewport.js",
                ".\/js\/content.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "type": "module"
        }
    ],
    "permissions": [
        "storage"
    ],
    "author": "Serhat M."
}