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…

O que é bootify - A Bootstrap Injector?

bootify - A Bootstrap Injector é uma extensão do Chrome desenvolvida por Josh Wein, e sua principal característica é "Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão bootify - A Bootstrap Injector

Baixe arquivos de extensão bootify - A Bootstrap Injector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome bootify - A Bootstrap Injector bootify - A Bootstrap Injector
ID ekbicbimdmfoehanpahkcajejciloahj
URL Oficial https://chromewebstore.google.com/detail/bootify-a-bootstrap-injec/ekbicbimdmfoehanpahkcajejciloahj
Descrição Adds bootstrap to the current web page because who doesn't like more bootstrap. Includes an options page and context menus to save…
Tamanho do Arquivo 27.38 KB
Contagem de Instalações 32
Versão Atual 0.96
Última Atualização 2016-04-21
Data de Publicação 2016-04-20
Desenvolvedor Josh Wein
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/JoshWein/bootify
Idiomas Suportados 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"
    }
}