hackbar

A browser extension for using kbar in HackMD

Wat is hackbar?

hackbar is een Chrome-extensie ontwikkeld door TzuWei, en de belangrijkste functie is "A browser extension for using kbar in HackMD".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie hackbar

Download hackbar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam hackbar hackbar
ID algbkiepdpcjnhgagoddfcicdeaiimba
Officiële URL https://chromewebstore.google.com/detail/hackbar/algbkiepdpcjnhgagoddfcicdeaiimba
Beschrijving A browser extension for using kbar in HackMD
Bestandsgrootte 65.84 KB
Aantal Installaties 333
Huidige Versie 1.3.0
Laatst Bijgewerkt 2023-06-16
Publicatiedatum 2021-12-23
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar TzuWei
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/uier/hackbar
Help Pagina-URL https://github.com/uier/hackbar
Ondersteunde Talen 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"
}