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…

什么是bootify - A Bootstrap Injector?

bootify - A Bootstrap Injector是由Josh Wein开发的Chrome扩展程序,该扩展的主要功能是“Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…”。

扩展截图

screenshot
screenshot

下载bootify - A Bootstrap Injector扩展crx文件

下载bootify - A Bootstrap Injector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 bootify - A Bootstrap Injector bootify - A Bootstrap Injector
ID ekbicbimdmfoehanpahkcajejciloahj
官方URL https://chromewebstore.google.com/detail/bootify-a-bootstrap-injec/ekbicbimdmfoehanpahkcajejciloahj
简介 Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…
文件大小 27.38 KB
安装次数 32
当前版本 0.96
更新时间 2016-04-21
上架时间 2016-04-20
开发者 Josh Wein
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/JoshWein/bootify
支持的语言 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"
    }
}