hackbar

A browser extension for using kbar in HackMD

Co to jest hackbar?

hackbar to rozszerzenie Chrome opracowane przez TzuWei, a jego główną funkcją jest „A browser extension for using kbar in HackMD”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia hackbar

Pobierz pliki rozszerzeń hackbar 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

                        Hackbar provides a kbar component to use in HackMD.

Features:
- Search notes, teams, tags, templates.
- Create empty note or from templates.
- Switch between workspaces (teams).
- Open recent or searched notes directly.
- Shortcuts for creating note and switching team.

GitHub: https://github.com/uier/hackbar                    

Podstawowe informacje o rozszerzeniu

Nazwa hackbar hackbar
ID algbkiepdpcjnhgagoddfcicdeaiimba
Oficjalny URL https://chromewebstore.google.com/detail/hackbar/algbkiepdpcjnhgagoddfcicdeaiimba
Opis A browser extension for using kbar in HackMD
Rozmiar pliku 65.84 KB
Liczba instalacji 333
Aktualna Wersja 1.3.0
Ostatnia Aktualizacja 2023-06-16
Data Publikacji 2021-12-23
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper TzuWei
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/uier/hackbar
Adres URL Strony Pomocy https://github.com/uier/hackbar
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "hackbar",
    "options_page": "options.html",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/hackmd.io\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "version": "1.3.0",
    "description": "A browser extension for using kbar in HackMD"
}