BCW: Bootstrap Grid Helper

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

What is BCW: Bootstrap Grid Helper?

BCW: Bootstrap Grid Helper is a Chrome extension developed by https://www.davidsottimano.com, and its main feature is "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning".

Extension Screenshots

screenshot

Download BCW: Bootstrap Grid Helper Extension CRX File

Download BCW: Bootstrap Grid Helper 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

                        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.                    

Extension Basic Information

Name BCW: Bootstrap Grid Helper BCW: Bootstrap Grid Helper
ID iapnoonijdgjdiemldkniknckmnhognb
Official URL https://chromewebstore.google.com/detail/bcw-bootstrap-grid-helper/iapnoonijdgjdiemldkniknckmnhognb
Description Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning
File Size 54.44 KB
Installation Count 35
Current Version 0.1.3
Last Updated 2017-01-15
Publish Date 2017-01-15
Rating 4.00/5 Total 2 Ratings
Developer https://www.davidsottimano.com
Email [email protected]
Payment Type free
Extension Website http://www.davidsottimano.com
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}