HackMDir

Manage your HackMD notes in a better way.

HackMDir là gì?

HackMDir là một tiện ích mở rộng Chrome được phát triển bởi afcidk, và tính năng chính của nó là "Manage your HackMD notes in a better way.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng HackMDir 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

                        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                    

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

Tên HackMDir HackMDir
ID mpkcjcncagplbnlkcnplogaiiabhieon
URL Chính Thức https://chrome.google.com/webstore/detail/hackmdir/mpkcjcncagplbnlkcnplogaiiabhieon
Mô tả Manage your HackMD notes in a better way.
Kích Thước Tệp 266 KB
Số Lần Cài Đặt 93
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2019-06-12
Ngày Phát Hành 2019-06-12
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển afcidk
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}