BCW: Bootstrap Grid Helper

Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning

O que é BCW: Bootstrap Grid Helper?

BCW: Bootstrap Grid Helper é uma extensão do Chrome desenvolvida por https://www.davidsottimano.com, e sua principal característica é "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão BCW: Bootstrap Grid Helper

Baixe arquivos de extensão BCW: Bootstrap Grid Helper 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

                        Gives divs with Bootstrap grid classes different background colors.

A very simple Chrome extension to help learn the Bootstrap grid classes. Created by Dave Sottimano for the Boise Codeworks 2017 winter cohort.                    

Informações Básicas da Extensão

Nome BCW: Bootstrap Grid Helper BCW: Bootstrap Grid Helper
ID iapnoonijdgjdiemldkniknckmnhognb
URL Oficial https://chromewebstore.google.com/detail/bcw-bootstrap-grid-helper/iapnoonijdgjdiemldkniknckmnhognb
Descrição Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning
Tamanho do Arquivo 54.44 KB
Contagem de Instalações 35
Versão Atual 0.1.3
Última Atualização 2017-01-15
Data de Publicação 2017-01-15
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor https://www.davidsottimano.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://www.davidsottimano.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BCW: Bootstrap Grid Helper",
    "version": "0.1.3",
    "description": "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning",
    "browser_action": {
        "default_icon": "glasses.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "glasses16.png",
        "48": "glasses48.png",
        "128": "glasses128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*\/*"
    ],
    "content_scripts": [
        {
            "html": [
                "popup.html"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "popup.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}