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
电子邮箱 [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"
            ]
        }
    ]
}