HackMD Enhance

Shortcuts and Tools for CodiMD

Τι είναι το HackMD Enhance;

Το HackMD Enhance είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον simonramstedt, και η κύρια λειτουργία του είναι "Shortcuts and Tools for CodiMD".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης HackMD Enhance

Λήψη αρχείων επέκτασης HackMD Enhance σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Open a document:
- press alt + o
- type the name of the doc (non-existing docs will be created)
- press enter (or shift+enter to open in a new tab)

Link to a document:
- press alt + l (you can change the shortcut in the options)
- type the name of the doc (non-existing docs will be created)
- press enter (or shift+enter to open the linked document in a new tab)

Changes in version 0.0.2:
- Now available for all websites (e.g. self-hosted CodiMD instances)
- I recommend to let the extension only run on selected websites
- Automatically creates title for new documents
- Automatically creates backlink to previous document (can be disabled)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα HackMD Enhance HackMD Enhance
ID eekpbjkhajjmlakbeiaficniogefmndn
Επίσημο URL https://chromewebstore.google.com/detail/hackmd-enhance/eekpbjkhajjmlakbeiaficniogefmndn
Περιγραφή Shortcuts and Tools for CodiMD
Μέγεθος Αρχείου 223 KB
Αριθμός Εγκαταστάσεων 33
Τρέχουσα Έκδοση 0.0.3
Τελευταία Ενημέρωση 2019-03-29
Ημερομηνία Δημοσίευσης 2019-03-29
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής simonramstedt
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/rmst/hackmd-enhance
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/rmst/hackmd-enhance
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HackMD Enhance",
    "version": "0.0.3",
    "manifest_version": 2,
    "description": "Shortcuts and Tools for CodiMD",
    "homepage_url": "https:\/\/github.com\/rmst\/hackmd-enhance",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.12.4.js",
                "jquery-ui.js",
                "inject.js"
            ],
            "css": [
                "jquery-ui.css"
            ]
        }
    ]
}