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…

Vad är bootify - A Bootstrap Injector?

bootify - A Bootstrap Injector är en Chrome-tillägg utvecklad av Josh Wein, och dess huvudfunktion är "Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner bootify - A Bootstrap Injector-förlängningens CRX-fil

Ladda ner bootify - A Bootstrap Injector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn bootify - A Bootstrap Injector bootify - A Bootstrap Injector
ID ekbicbimdmfoehanpahkcajejciloahj
Officiell webbadress https://chromewebstore.google.com/detail/bootify-a-bootstrap-injec/ekbicbimdmfoehanpahkcajejciloahj
Beskrivning Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…
Filstorlek 27.38 KB
Antal Installationer 32
Aktuell Version 0.96
Senast Uppdaterad 2016-04-21
Publiceringsdatum 2016-04-20
Utvecklare Josh Wein
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://github.com/JoshWein/bootify
Stödda Språk 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"
    }
}