BCW: Bootstrap Grid Helper
Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning
Co to jest BCW: Bootstrap Grid Helper?
BCW: Bootstrap Grid Helper to rozszerzenie Chrome opracowane przez https://www.davidsottimano.com, a jego główną funkcją jest „Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia BCW: Bootstrap Grid Helper
Pobierz pliki rozszerzeń BCW: Bootstrap Grid Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | BCW: Bootstrap Grid Helper |
ID | iapnoonijdgjdiemldkniknckmnhognb |
Oficjalny URL | https://chromewebstore.google.com/detail/bcw-bootstrap-grid-helper/iapnoonijdgjdiemldkniknckmnhognb |
Opis | Gives your Bootstrap containers, rows and columns background colors to assist your learning with positioning |
Rozmiar pliku | 54.44 KB |
Liczba instalacji | 35 |
Aktualna Wersja | 0.1.3 |
Ostatnia Aktualizacja | 2017-01-15 |
Data Publikacji | 2017-01-15 |
Ocena | 4.00/5 Łącznie 2 Oceny |
Deweloper | https://www.davidsottimano.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | http://www.davidsottimano.com |
Obsługiwane Języki | 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:\/\/*\/*" ] } ] } |