HackMD Enhance
Shortcuts and Tools for CodiMD
什么是HackMD Enhance?
HackMD Enhance是由simonramstedt开发的Chrome扩展程序,该扩展的主要功能是“Shortcuts and Tools for CodiMD”。
扩展截图
下载HackMD Enhance扩展crx文件
下载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) 扩展基本信息
| 名称 | |
| 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"
]
}
]
} | |