hackbar

A browser extension for using kbar in HackMD

What is hackbar?

hackbar is a Chrome extension developed by TzuWei, and its main feature is "A browser extension for using kbar in HackMD".

Extension Screenshots

screenshot

Download hackbar Extension CRX File

Download hackbar 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

                        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                    

Extension Basic Information

Name hackbar hackbar
ID algbkiepdpcjnhgagoddfcicdeaiimba
Official URL https://chromewebstore.google.com/detail/hackbar/algbkiepdpcjnhgagoddfcicdeaiimba
Description A browser extension for using kbar in HackMD
File Size 65.84 KB
Installation Count 333
Current Version 1.3.0
Last Updated 2023-06-16
Publish Date 2021-12-23
Rating 5.00/5 Total 1 Ratings
Developer TzuWei
Email [email protected]
Payment Type free
Extension Website https://github.com/uier/hackbar
Help Page URL https://github.com/uier/hackbar
Supported Languages 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"
}