hackbar

A browser extension for using kbar in HackMD

hackbarとは何ですか?

hackbarはTzuWeiによって開発されたChromeの拡張機能で、その主な機能は「A browser extension for using kbar in HackMD」です。

拡張機能のスクリーンショット

screenshot

hackbar拡張機能のCRXファイルをダウンロード

hackbar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 hackbar hackbar
ID algbkiepdpcjnhgagoddfcicdeaiimba
公式URL https://chromewebstore.google.com/detail/hackbar/algbkiepdpcjnhgagoddfcicdeaiimba
説明 A browser extension for using kbar in HackMD
ファイルサイズ 65.84 KB
インストール数 333
現在のバージョン 1.3.0
最終更新日 2023-06-16
公開日 2021-12-23
評価 5.00/5 合計 1 レビュー
開発者 TzuWei
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/uier/hackbar
ヘルプページのURL https://github.com/uier/hackbar
対応言語 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"
}