BSInfo - Bootstrap Info Box

Shows a box with information about the currently used bootstrap version and current grid breakpoint

O que é BSInfo - Bootstrap Info Box?

BSInfo - Bootstrap Info Box é uma extensão do Chrome desenvolvida por Propra, e sua principal característica é "Shows a box with information about the currently used bootstrap version and current grid breakpoint".

Baixar o arquivo CRX da Extensão BSInfo - Bootstrap Info Box

Baixe arquivos de extensão BSInfo - Bootstrap Info Box 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

                        Shows a info box with the bootstrap-version used and the current viewport / grid-size being used.

Release notes:

BSInfo 0.4 - July 27, 2018: 
Toggle state is now remembered per domain                    

Informações Básicas da Extensão

Nome BSInfo - Bootstrap Info Box BSInfo - Bootstrap Info Box
ID pegegcbjkghiphdgfgbifbelkpnljkbm
URL Oficial https://chromewebstore.google.com/detail/bsinfo-bootstrap-info-box/pegegcbjkghiphdgfgbifbelkpnljkbm
Descrição Shows a box with information about the currently used bootstrap version and current grid breakpoint
Tamanho do Arquivo 81.18 KB
Contagem de Instalações 22
Versão Atual 0.4
Última Atualização 2018-07-27
Data de Publicação 2018-07-27
Desenvolvedor Propra
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BSInfo - Bootstrap Info Box",
    "short_name": "BSInfo",
    "version": "0.4",
    "description": "Shows a box with information about the currently used bootstrap version and current grid breakpoint",
    "author": "Josha van Praag",
    "browser_action": {
        "default_icon": "img\/bs_logo.png",
        "default_title": "BSInfo"
    },
    "background": {
        "scripts": [
            "events.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "img\/bs_logo_16.png",
        "128": "img\/bs_logo_128.png",
        "256": "img\/bs_logo_256.png"
    },
    "content_scripts": [
        {
            "css": [
                "bsinfo.css"
            ],
            "js": [
                "bsinfo.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "all_frames": true
        }
    ]
}