HackMDir
Manage your HackMD notes in a better way.
HackMDirคืออะไร?
HackMDir เป็นส่วนขยายของ Chrome ที่พัฒนาโดย afcidk และคุณลักษณะหลักของมันคือ "Manage your HackMD notes in a better way."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HackMDir
ดาวน์โหลดไฟล์ส่วนขยาย HackMDir ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This user-friendly extension helps manage your HackMD notes in a better way! This extension supports 1. Directory(grouped) structures in managing notes 2. Real-time rendered result from search bar 3. Bulk remove notes/histories 4. Bulk change note permissions 5. One-click bookmode export If you think this extension needs more functions and could be better, please feel free to open an issue or make pull requests! Github: https://github.com/afcidk/HackMDir
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | mpkcjcncagplbnlkcnplogaiiabhieon |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/hackmdir/mpkcjcncagplbnlkcnplogaiiabhieon |
คำอธิบาย | Manage your HackMD notes in a better way. |
ขนาดไฟล์ | 266 KB |
จำนวนการติดตั้ง | 93 |
เวอร์ชันปัจจุบัน | 1.0.2 |
อัปเดตครั้งล่าสุด | 2019-06-12 |
วันที่เผยแพร่ | 2019-06-12 |
คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
ผู้พัฒนา | afcidk |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HackMDir", "version": "1.0.2", "description": "Manage your HackMD notes in a better way.", "permissions": [ "activeTab", "declarativeContent", "storage", "tabs" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/hackmd.io\/", "https:\/\/hackmd.io\/recent" ], "js": [ "content.js" ] } ], "page_action": { "default_icon": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } }, "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "manifest_version": 2 } |