HackMDir

Manage your HackMD notes in a better way.

什麼是HackMDir?

HackMDir是由afcidk開發的Chrome擴展程式,該擴展的主要功能是“Manage your HackMD notes in a better way.”。

擴展截圖

screenshot
screenshot
screenshot

下載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                    

擴展基本資訊

名稱 HackMDir HackMDir
ID mpkcjcncagplbnlkcnplogaiiabhieon
官方網址 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
}