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…

Was ist bootify - A Bootstrap Injector?

bootify - A Bootstrap Injector ist eine Chrome-Erweiterung, die von Josh Wein entwickelt wurde, und ihr Hauptmerkmal ist "Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…".

Erweiterungsscreenshots

screenshot
screenshot

bootify - A Bootstrap Injector-Erweiterungs-CRX-Datei herunterladen

Laden Sie bootify - A Bootstrap Injector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name bootify - A Bootstrap Injector bootify - A Bootstrap Injector
ID ekbicbimdmfoehanpahkcajejciloahj
Offizielle URL https://chromewebstore.google.com/detail/bootify-a-bootstrap-injec/ekbicbimdmfoehanpahkcajejciloahj
Beschreibung Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…
Dateigröße 27.38 KB
Installationsanzahl 32
Aktuelle Version 0.96
Letztes Update 2016-04-21
Veröffentlichungsdatum 2016-04-20
Entwickler Josh Wein
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/JoshWein/bootify
Unterstützte Sprachen 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"
    }
}