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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.davidsottimano.com และคุณลักษณะหลักของมันคือ "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BCW: Bootstrap Grid Helper

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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:\/\/*\/*"
            ]
        }
    ]
}