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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 BSInfo - Bootstrap Info Box BSInfo - Bootstrap Info Box
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
        }
    ]
}