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…

Hvad er bootify - A Bootstrap Injector?

bootify - A Bootstrap Injector er en Chrome-udvidelse udviklet af Josh Wein, og dens hovedfunktion er "Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…".

Udvidelsesskærmbilleder

screenshot
screenshot

Download bootify - A Bootstrap Injector-udvidelses-CRX-fil

Download bootify - A Bootstrap Injector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn bootify - A Bootstrap Injector bootify - A Bootstrap Injector
ID ekbicbimdmfoehanpahkcajejciloahj
Officiel URL https://chromewebstore.google.com/detail/bootify-a-bootstrap-injec/ekbicbimdmfoehanpahkcajejciloahj
Beskrivelse Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…
Filstørrelse 27.38 KB
Antal Installationer 32
Nuværende Version 0.96
Senest Opdateret 2016-04-21
Udgivelsesdato 2016-04-20
Udvikler Josh Wein
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://github.com/JoshWein/bootify
Understøttede Sprog 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"
    }
}