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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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
}