MarkDown Link To Dynalist

MarkDown Link To Dynalist

The link to the page is saved in the clipboard in the format of the MarkDown. A new bookmark opens your Dynalist.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MarkDown Link To Dynalist",
  "version": "0.0.1",
  "short_name": "MDLinkToDynalist",
  "description": "The link to the page is saved in the clipboard in the format of the MarkDown. A new bookmark opens your Dynalist.",
  "icons": {
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon_19.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "<all_urls>"
  ],
  "commands": {
    "toggleLast": {
      "suggested_key": {
        "default": "Alt+B"
      },
      "description": "Back to Last Tab"
    }
  },
  "manifest_version": 2
}