HackMD Enhance
Shortcuts and Tools for CodiMD
Что такое HackMD Enhance?
HackMD Enhance - это расширение Chrome, разработанное simonramstedt, и его основная функция - "Shortcuts and Tools for CodiMD".
Снимки экрана расширения
Скачать файл 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 |
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" ] } ] } |