Sharemaster: Copy Title & URL with Shortcut

Sharemaster: Copy Title & URL with Shortcut

Helps you copy the title and url quickly with keyboard shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Sharemaster: Copy Title & URL with Shortcut",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "Helps you copy the title and url quickly with keyboard shortcuts",
  "author": "Walter Teng",
  "homepage_url": "https://github.com/davzoku",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "clipboardWrite",
    "contextMenus",
    "tabs"
  ],
  "commands": {
    "copyTitleURLDefault": {
      "suggested_key": {
        "default": "Alt+C"
      },
      "description": "Copy Title and URL (default)"
    },
    "copyTitleURLMarkdown": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "Copy Title and URL (Markdown)"
    },
    "copyTitleURLHTML": {
      "suggested_key": {
        "default": "Alt+H"
      },
      "description": "Copy Title and URL (HTML)"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}