BCW: Bootstrap Grid Helper

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

什麼是BCW: Bootstrap Grid Helper?

BCW: Bootstrap Grid Helper是由https://www.davidsottimano.com開發的Chrome擴展程式,該擴展的主要功能是“Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning”。

擴展截圖

screenshot

下載BCW: Bootstrap Grid Helper擴展crx文件

下載BCW: Bootstrap Grid Helper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 BCW: Bootstrap Grid Helper BCW: Bootstrap Grid Helper
ID iapnoonijdgjdiemldkniknckmnhognb
官方網址 https://chromewebstore.google.com/detail/bcw-bootstrap-grid-helper/iapnoonijdgjdiemldkniknckmnhognb
簡介 Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning
檔案大小 54.44 KB
安裝次數 35
目前版本 0.1.3
更新時間 2017-01-15
上架時間 2017-01-15
評分 4.00/5 共 2 次評分
開發者 https://www.davidsottimano.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://www.davidsottimano.com
支援的語言 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:\/\/*\/*"
            ]
        }
    ]
}