BCW: Bootstrap Grid Helper
Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning
Was ist BCW: Bootstrap Grid Helper?
BCW: Bootstrap Grid Helper ist eine Chrome-Erweiterung, die von https://www.davidsottimano.com entwickelt wurde, und ihr Hauptmerkmal ist "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning".
Erweiterungsscreenshots
BCW: Bootstrap Grid Helper-Erweiterungs-CRX-Datei herunterladen
Laden Sie BCW: Bootstrap Grid Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | iapnoonijdgjdiemldkniknckmnhognb |
| Offizielle URL | https://chromewebstore.google.com/detail/bcw-bootstrap-grid-helper/iapnoonijdgjdiemldkniknckmnhognb |
| Beschreibung | Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning |
| Dateigröße | 54.44 KB |
| Installationsanzahl | 35 |
| Aktuelle Version | 0.1.3 |
| Letztes Update | 2017-01-15 |
| Veröffentlichungsdatum | 2017-01-15 |
| Bewertung | 4.00/5 Insgesamt 2 Bewertungen |
| Entwickler | https://www.davidsottimano.com |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://www.davidsottimano.com |
| Unterstützte Sprachen | 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:\/\/*\/*"
]
}
]
} | |