BSInfo - Bootstrap Info Box

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

¿Qué es BSInfo - Bootstrap Info Box?

BSInfo - Bootstrap Info Box es una extensión de Chrome desarrollada por Propra, y su función principal es "Shows a box with information about the currently used bootstrap version and current grid breakpoint".

Descargar Archivo CRX de la Extensión BSInfo - Bootstrap Info Box

Descarga archivos de extensión BSInfo - Bootstrap Info Box en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre BSInfo - Bootstrap Info Box BSInfo - Bootstrap Info Box
ID pegegcbjkghiphdgfgbifbelkpnljkbm
URL Oficial https://chromewebstore.google.com/detail/bsinfo-bootstrap-info-box/pegegcbjkghiphdgfgbifbelkpnljkbm
Descripción Shows a box with information about the currently used bootstrap version and current grid breakpoint
Tamaño del Archivo 81.18 KB
Cantidad de Instalaciones 22
Versión Actual 0.4
Última Actualización 2018-07-27
Fecha de Publicación 2018-07-27
Desarrollador Propra
Tipo de Pago free
Idiomas Soportados 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
        }
    ]
}