BCW: Bootstrap Grid Helper
Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning
Hvad er BCW: Bootstrap Grid Helper?
BCW: Bootstrap Grid Helper er en Chrome-udvidelse udviklet af https://www.davidsottimano.com, og dens hovedfunktion er "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning".
Udvidelsesskærmbilleder
Download BCW: Bootstrap Grid Helper-udvidelses-CRX-fil
Download BCW: Bootstrap Grid Helper-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | iapnoonijdgjdiemldkniknckmnhognb |
| Officiel URL | https://chromewebstore.google.com/detail/bcw-bootstrap-grid-helper/iapnoonijdgjdiemldkniknckmnhognb |
| Beskrivelse | Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning |
| Filstørrelse | 54.44 KB |
| Antal Installationer | 35 |
| Nuværende Version | 0.1.3 |
| Senest Opdateret | 2017-01-15 |
| Udgivelsesdato | 2017-01-15 |
| Bedømmelse | 4.00/5 Samlet 2 Bedømmelser |
| Udvikler | https://www.davidsottimano.com |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | http://www.davidsottimano.com |
| Understøttede Sprog | 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:\/\/*\/*"
]
}
]
} | |