BSInfo - Bootstrap Info Box

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

What is BSInfo - Bootstrap Info Box?

BSInfo - Bootstrap Info Box is a Chrome extension developed by Propra, and its main feature is "Shows a box with information about the currently used bootstrap version and current grid breakpoint".

Download BSInfo - Bootstrap Info Box Extension CRX File

Download BSInfo - Bootstrap Info Box extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name BSInfo - Bootstrap Info Box BSInfo - Bootstrap Info Box
ID pegegcbjkghiphdgfgbifbelkpnljkbm
Official URL https://chromewebstore.google.com/detail/bsinfo-bootstrap-info-box/pegegcbjkghiphdgfgbifbelkpnljkbm
Description Shows a box with information about the currently used bootstrap version and current grid breakpoint
File Size 81.18 KB
Installation Count 22
Current Version 0.4
Last Updated 2018-07-27
Publish Date 2018-07-27
Developer Propra
Payment Type free
Supported Languages 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
        }
    ]
}