HackMDir

Manage your HackMD notes in a better way.

Qu'est-ce que HackMDir ?

HackMDir est une extension Chrome développée par afcidk, et sa fonction principale est "Manage your HackMD notes in a better way.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension HackMDir

Téléchargez les fichiers d'extension HackMDir au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom HackMDir HackMDir
ID mpkcjcncagplbnlkcnplogaiiabhieon
URL Officiel https://chrome.google.com/webstore/detail/hackmdir/mpkcjcncagplbnlkcnplogaiiabhieon
Description Manage your HackMD notes in a better way.
Taille du Fichier 266 KB
Nombre d'Installations 93
Version Actuelle 1.0.2
Dernière Mise à Jour 2019-06-12
Date de Publication 2019-06-12
Évaluation 5.00/5 Total 5 Évaluations
Développeur afcidk
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}