Link-Md

Link-Md

Create a markdown link of the current page with quoted text.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Link-Md",
  "description": "Create a markdown link of the current page with quoted text.",
  "version": "1.3",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "64": "icon-64.png",
      "128": "icon-128.png"
    }
  },
  "icons": {
    "64": "icon-64.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "clipboardWrite"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+C"
      },
      "description": "Copy quote link to clipboard."
    }
  }
}