HackMDir
Manage your HackMD notes in a better way.
什么是HackMDir?
HackMDir是由afcidk开发的Chrome扩展程序,该扩展的主要功能是“Manage your HackMD notes in a better way.”。
扩展截图
下载HackMDir扩展crx文件
下载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
} | |