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ファイルをダウンロード

Search for Bulma拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}