BSInfo - Bootstrap Info Box

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

Was ist BSInfo - Bootstrap Info Box?

BSInfo - Bootstrap Info Box ist eine Chrome-Erweiterung, die von Propra entwickelt wurde, und ihr Hauptmerkmal ist "Shows a box with information about the currently used bootstrap version and current grid breakpoint".

BSInfo - Bootstrap Info Box-Erweiterungs-CRX-Datei herunterladen

Laden Sie BSInfo - Bootstrap Info Box-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name BSInfo - Bootstrap Info Box BSInfo - Bootstrap Info Box
ID pegegcbjkghiphdgfgbifbelkpnljkbm
Offizielle URL https://chromewebstore.google.com/detail/bsinfo-bootstrap-info-box/pegegcbjkghiphdgfgbifbelkpnljkbm
Beschreibung Shows a box with information about the currently used bootstrap version and current grid breakpoint
Dateigröße 81.18 KB
Installationsanzahl 22
Aktuelle Version 0.4
Letztes Update 2018-07-27
Veröffentlichungsdatum 2018-07-27
Entwickler Propra
Zahlungsart free
Unterstützte Sprachen 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
        }
    ]
}