Search for Bulma

Unofficial Chrome extension to search Bulma documentation

Search for Bulma란 무엇입니까?

Search for Bulma은(는) patrickdaze에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unofficial Chrome extension to search Bulma documentation"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Search for Bulma 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds search functionality to the documentation for the open source Bulma CSS framework.

A search icon will appear in the main navigation of the Bulma documenation. Click it to toggle search.                    

확장 프로그램 기본 정보

이름 Search for Bulma Search for Bulma
ID melacinmggphfalalkhedbcjgdpnohfl
공식 URL https://chromewebstore.google.com/detail/search-for-bulma/melacinmggphfalalkhedbcjgdpnohfl
설명 Unofficial Chrome extension to search Bulma documentation
파일 크기 250 KB
설치 횟수 35
현재 버전 1.1.2
최근 업데이트 2020-09-07
출시 날짜 2020-06-17
평점 5.00/5 총 3 개의 평점
개발자 patrickdaze
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/patrickdaze/bulma-search-chrome
도움말 페이지 URL https://github.com/patrickdaze/bulma-search-chrome/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Search for Bulma",
    "version": "1.1.2",
    "description": "Unofficial Chrome extension to search Bulma documentation",
    "homepage_url": "https:\/\/github.com\/patrickdaze\/bulma-search-chrome",
    "icons": {
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bulma.io\/*"
            ],
            "run_at": "document_end",
            "js": [
                "libs\/vue-2.6.10.min.js",
                "libs\/algoliasearchLite-3.22.1.min.js",
                "libs\/vue-instantsearch-2.2.1.min.js",
                "content.js"
            ]
        }
    ]
}