HackMDir

Manage your HackMD notes in a better way.

HackMDir क्या है?

HackMDir afcidk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Manage your HackMD notes in a better way."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HackMDir एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}