HackMD Enhance

HackMD Enhance

Shortcuts and Tools for CodiMD

Merlin
Additional files are visible only to premium users

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"
      ]
    }
  ]
}