Search for Bulma

Unofficial Chrome extension to search Bulma documentation

Co to jest Search for Bulma?

Search for Bulma to rozszerzenie Chrome opracowane przez patrickdaze, a jego główną funkcją jest „Unofficial Chrome extension to search Bulma documentation”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Search for Bulma

Pobierz pliki rozszerzeń Search for Bulma w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Search for Bulma Search for Bulma
ID melacinmggphfalalkhedbcjgdpnohfl
Oficjalny URL https://chromewebstore.google.com/detail/search-for-bulma/melacinmggphfalalkhedbcjgdpnohfl
Opis Unofficial Chrome extension to search Bulma documentation
Rozmiar pliku 250 KB
Liczba instalacji 35
Aktualna Wersja 1.1.2
Ostatnia Aktualizacja 2020-09-07
Data Publikacji 2020-06-17
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper patrickdaze
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/patrickdaze/bulma-search-chrome
Adres URL Strony Pomocy https://github.com/patrickdaze/bulma-search-chrome/issues
Obsługiwane Języki 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"
            ]
        }
    ]
}