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 to jest bootify - A Bootstrap Injector?

bootify - A Bootstrap Injector to rozszerzenie Chrome opracowane przez Josh Wein, a jego główną funkcją jest „Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia bootify - A Bootstrap Injector

Pobierz pliki rozszerzeń bootify - A Bootstrap Injector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa bootify - A Bootstrap Injector bootify - A Bootstrap Injector
ID ekbicbimdmfoehanpahkcajejciloahj
Oficjalny URL https://chromewebstore.google.com/detail/bootify-a-bootstrap-injec/ekbicbimdmfoehanpahkcajejciloahj
Opis Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…
Rozmiar pliku 27.38 KB
Liczba instalacji 32
Aktualna Wersja 0.96
Ostatnia Aktualizacja 2016-04-21
Data Publikacji 2016-04-20
Deweloper Josh Wein
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/JoshWein/bootify
Obsługiwane Języki 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"
    }
}