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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة BCW: Bootstrap Grid Helper
قم بتنزيل ملفات الامتداد BCW: Bootstrap Grid Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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. معلومات أساسية عن التمديد
| الاسم | |
| 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:\/\/*\/*"
]
}
]
} | |