BSInfo - Bootstrap Info Box
Shows a box with information about the currently used bootstrap version and current grid breakpoint
Co to jest BSInfo - Bootstrap Info Box?
BSInfo - Bootstrap Info Box to rozszerzenie Chrome opracowane przez Propra, a jego główną funkcją jest „Shows a box with information about the currently used bootstrap version and current grid breakpoint”.
Pobierz plik CRX rozszerzenia BSInfo - Bootstrap Info Box
Pobierz pliki rozszerzeń BSInfo - Bootstrap Info Box 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
Shows a info box with the bootstrap-version used and the current viewport / grid-size being used.
Release notes:
BSInfo 0.4 - July 27, 2018:
Toggle state is now remembered per domain Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | pegegcbjkghiphdgfgbifbelkpnljkbm |
| Oficjalny URL | https://chromewebstore.google.com/detail/bsinfo-bootstrap-info-box/pegegcbjkghiphdgfgbifbelkpnljkbm |
| Opis | Shows a box with information about the currently used bootstrap version and current grid breakpoint |
| Rozmiar pliku | 81.18 KB |
| Liczba instalacji | 22 |
| Aktualna Wersja | 0.4 |
| Ostatnia Aktualizacja | 2018-07-27 |
| Data Publikacji | 2018-07-27 |
| Deweloper | Propra |
| Typ Płatności | free |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "BSInfo - Bootstrap Info Box",
"short_name": "BSInfo",
"version": "0.4",
"description": "Shows a box with information about the currently used bootstrap version and current grid breakpoint",
"author": "Josha van Praag",
"browser_action": {
"default_icon": "img\/bs_logo.png",
"default_title": "BSInfo"
},
"background": {
"scripts": [
"events.js"
],
"persistent": false
},
"icons": {
"16": "img\/bs_logo_16.png",
"128": "img\/bs_logo_128.png",
"256": "img\/bs_logo_256.png"
},
"content_scripts": [
{
"css": [
"bsinfo.css"
],
"js": [
"bsinfo.js"
],
"matches": [
"*:\/\/*\/*"
],
"all_frames": true
}
]
} | |