BCW: Bootstrap Grid Helper
Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning
Cos'è BCW: Bootstrap Grid Helper?
BCW: Bootstrap Grid Helper è un'estensione di Chrome sviluppata da https://www.davidsottimano.com, e la sua funzione principale è "Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione BCW: Bootstrap Grid Helper
Scarica i file di estensione BCW: Bootstrap Grid Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | iapnoonijdgjdiemldkniknckmnhognb |
| URL Ufficiale | https://chromewebstore.google.com/detail/bcw-bootstrap-grid-helper/iapnoonijdgjdiemldkniknckmnhognb |
| Descrizione | Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning |
| Dimensione del File | 54.44 KB |
| Conteggio Installazioni | 35 |
| Versione Corrente | 0.1.3 |
| Ultimo Aggiornamento | 2017-01-15 |
| Data di Pubblicazione | 2017-01-15 |
| Valutazione | 4.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://www.davidsottimano.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://www.davidsottimano.com |
| Lingue Supportate | 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:\/\/*\/*"
]
}
]
} | |