Markdown Link Generator

Markdown Link Generator

Generates inline Markdown link from the selected text and current url of the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Markdown Link Generator",
  "description": "Generates inline Markdown link from the selected text and current url of the page",
  "version": "0.0.0.1",
  "author": "Unmesh Gundecha",
  "manifest_version": 2,
  "permissions": [
    "contextMenus",
    "tabs",
    "clipboardWrite"
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}