Search for Bulma
Unofficial Chrome extension to search Bulma documentation
What is Search for Bulma?
Search for Bulma is a Chrome extension developed by patrickdaze, and its main feature is "Unofficial Chrome extension to search Bulma documentation".
Extension Screenshots
Download Search for Bulma Extension CRX File
Download Search for Bulma extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Search for Bulma |
ID | melacinmggphfalalkhedbcjgdpnohfl |
Official URL | https://chromewebstore.google.com/detail/search-for-bulma/melacinmggphfalalkhedbcjgdpnohfl |
Description | Unofficial Chrome extension to search Bulma documentation |
File Size | 250 KB |
Installation Count | 35 |
Current Version | 1.1.2 |
Last Updated | 2020-09-07 |
Publish Date | 2020-06-17 |
Rating | 5.00/5 Total 3 Ratings |
Developer | patrickdaze |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/patrickdaze/bulma-search-chrome |
Help Page URL | https://github.com/patrickdaze/bulma-search-chrome/issues |
Supported Languages | 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" ] } ] } |