bootify - A Bootstrap Injector

Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…

Что такое bootify - A Bootstrap Injector?

bootify - A Bootstrap Injector - это расширение Chrome, разработанное Josh Wein, и его основная функция - "Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…".

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

screenshot
screenshot

Скачать файл CRX расширения bootify - A Bootstrap Injector

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

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

                        Adds bootstrap to the current web page because who doesn't like more bootstrap.

Includes an options page and context menus to save websites that you always want bootstrap on.

Works great for old websites like your college professor's. Not recommended for websites that are already responsive.

Source Code: https://github.com/JoshWein/bootify                    

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

Название bootify - A Bootstrap Injector bootify - A Bootstrap Injector
ID ekbicbimdmfoehanpahkcajejciloahj
Официальный URL https://chromewebstore.google.com/detail/bootify-a-bootstrap-injec/ekbicbimdmfoehanpahkcajejciloahj
Описание Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…
Размер файла 27.38 KB
Количество установок 32
Текущая Версия 0.96
Последнее Обновление 2016-04-21
Дата публикации 2016-04-20
Разработчик Josh Wein
Электронная почта [email protected]
Тип оплаты free
URL страницы помощи https://github.com/JoshWein/bootify
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "bootify - A Bootstrap Injector",
    "version": "0.96",
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "contextMenus",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Add bootstrap to page."
    },
    "manifest_version": 2,
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "load.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon16dis.png",
        "128": "icon128.png"
    }
}