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 |
| 官方網址 | 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"
]
}
]
} | |