hackbar

A browser extension for using kbar in HackMD

hackbarคืออะไร?

hackbar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TzuWei และคุณลักษณะหลักของมันคือ "A browser extension for using kbar in HackMD"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย hackbar

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
}