BSInfo - Bootstrap Info Box
Shows a box with information about the currently used bootstrap version and current grid breakpoint
什么是BSInfo - Bootstrap Info Box?
BSInfo - Bootstrap Info Box是由Propra开发的Chrome扩展程序,该扩展的主要功能是“Shows a box with information about the currently used bootstrap version and current grid breakpoint”。
下载BSInfo - Bootstrap Info Box扩展crx文件
下载BSInfo - Bootstrap Info Box扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | pegegcbjkghiphdgfgbifbelkpnljkbm |
| 官方URL | https://chromewebstore.google.com/detail/bsinfo-bootstrap-info-box/pegegcbjkghiphdgfgbifbelkpnljkbm |
| 简介 | Shows a box with information about the currently used bootstrap version and current grid breakpoint |
| 文件大小 | 81.18 KB |
| 安装次数 | 22 |
| 当前版本 | 0.4 |
| 更新时间 | 2018-07-27 |
| 上架时间 | 2018-07-27 |
| 开发者 | Propra |
| 付费类型 | free |
| 支持的语言 | 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
}
]
} | |