HackMD Enhance
Shortcuts and Tools for CodiMD
HackMD Enhance क्या है?
HackMD Enhance simonramstedt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shortcuts and Tools for CodiMD"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में HackMD Enhance एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } ] } |