hackbar

A browser extension for using kbar in HackMD

hackbar là gì?

hackbar là một tiện ích mở rộng Chrome được phát triển bởi TzuWei, và tính năng chính của nó là "A browser extension for using kbar in HackMD".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng hackbar

Tải xuống các tệp mở rộng hackbar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên hackbar hackbar
ID algbkiepdpcjnhgagoddfcicdeaiimba
URL Chính Thức https://chromewebstore.google.com/detail/hackbar/algbkiepdpcjnhgagoddfcicdeaiimba
Mô tả A browser extension for using kbar in HackMD
Kích Thước Tệp 65.84 KB
Số Lần Cài Đặt 333
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2023-06-16
Ngày Phát Hành 2021-12-23
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển TzuWei
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/uier/hackbar
URL Trang Trợ Giúp https://github.com/uier/hackbar
Ngôn Ngữ Được Hỗ Trợ 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"
}