Copy Link With Title

Copy Link With Title

This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Copy Link With Title",
  "description": "This extension copies the current tab's link and title, formatted into Markdown, HTML, or a custom format.",
  "version": "1.0.2",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "activeTab",
    "storage"
  ]
}