HackMD Search

HackMD Search

You can search texts in HackMD.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HackMD Search",
  "description": "You can search texts in HackMD.",
  "version": "0.5.0.0",
  "manifest_version": 3,
  "icons": {
    "48": "img/icon_48dp.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://hackmd.io/*"
      ],
      "js": [
        "js/jquery-3.5.1.min.js",
        "script/content_script.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "clipboardWrite"
  ],
  "options_ui": {
    "page": "script/options.html",
    "open_in_tab": true
  }
}