BSInfo - Bootstrap Info Box
Shows a box with information about the currently used bootstrap version and current grid breakpoint
Co je BSInfo - Bootstrap Info Box?
BSInfo - Bootstrap Info Box je rozšíření Chrome vyvinuté Propra, a jeho hlavní funkcí je „Shows a box with information about the currently used bootstrap version and current grid breakpoint“.
Stáhnout soubor CRX rozšíření BSInfo - Bootstrap Info Box
Stáhněte si soubory rozšíření BSInfo - Bootstrap Info Box ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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 Základní Informace o Rozšíření
| Název | |
| ID | pegegcbjkghiphdgfgbifbelkpnljkbm |
| Oficiální URL | https://chromewebstore.google.com/detail/bsinfo-bootstrap-info-box/pegegcbjkghiphdgfgbifbelkpnljkbm |
| Popis | Shows a box with information about the currently used bootstrap version and current grid breakpoint |
| Velikost souboru | 81.18 KB |
| Počet instalací | 22 |
| Aktuální Verze | 0.4 |
| Poslední Aktualizace | 2018-07-27 |
| Datum Vydání | 2018-07-27 |
| Vývojář | Propra |
| Typ Platby | free |
| Podporované Jazyky | 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
}
]
} | |