BCW: Bootstrap Grid Helper

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

Apa itu BCW: Bootstrap Grid Helper?

BCW: Bootstrap Grid Helper adalah ekstensi Chrome yang dikembangkan oleh https://www.davidsottimano.com, dan fitur utamanya adalah "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi BCW: Bootstrap Grid Helper

Unduh file ekstensi BCW: Bootstrap Grid Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama BCW: Bootstrap Grid Helper BCW: Bootstrap Grid Helper
ID iapnoonijdgjdiemldkniknckmnhognb
URL Resmi https://chromewebstore.google.com/detail/bcw-bootstrap-grid-helper/iapnoonijdgjdiemldkniknckmnhognb
Deskripsi Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning
Ukuran File 54.44 KB
Jumlah Instalasi 35
Versi Saat Ini 0.1.3
Terakhir Diperbarui 2017-01-15
Tanggal Publikasi 2017-01-15
Penilaian 4.00/5 Total 2 Penilaian
Pengembang https://www.davidsottimano.com
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.davidsottimano.com
Bahasa yang Didukung 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:\/\/*\/*"
            ]
        }
    ]
}