hackbar

A browser extension for using kbar in HackMD

Qu'est-ce que hackbar ?

hackbar est une extension Chrome développée par TzuWei, et sa fonction principale est "A browser extension for using kbar in HackMD".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension hackbar

Téléchargez les fichiers d'extension hackbar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom hackbar hackbar
ID algbkiepdpcjnhgagoddfcicdeaiimba
URL Officiel https://chromewebstore.google.com/detail/hackbar/algbkiepdpcjnhgagoddfcicdeaiimba
Description A browser extension for using kbar in HackMD
Taille du Fichier 65.84 KB
Nombre d'Installations 333
Version Actuelle 1.3.0
Dernière Mise à Jour 2023-06-16
Date de Publication 2021-12-23
Évaluation 5.00/5 Total 1 Évaluations
Développeur TzuWei
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/uier/hackbar
URL de la Page d'Aide https://github.com/uier/hackbar
Langues Prises en Charge 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"
}