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…

Co je bootify - A Bootstrap Injector?

bootify - A Bootstrap Injector je rozšíření Chrome vyvinuté Josh Wein, a jeho hlavní funkcí je „Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření bootify - A Bootstrap Injector

Stáhněte si soubory rozšíření bootify - A Bootstrap Injector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název bootify - A Bootstrap Injector bootify - A Bootstrap Injector
ID ekbicbimdmfoehanpahkcajejciloahj
Oficiální URL https://chromewebstore.google.com/detail/bootify-a-bootstrap-injec/ekbicbimdmfoehanpahkcajejciloahj
Popis Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…
Velikost souboru 27.38 KB
Počet instalací 32
Aktuální Verze 0.96
Poslední Aktualizace 2016-04-21
Datum Vydání 2016-04-20
Vývojář Josh Wein
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/JoshWein/bootify
Podporované Jazyky 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"
    }
}