Tab Link Copier

Tab Link Copier

Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Link Copier",
  "description": "Copies the current tab's url and title as a rich text link. Useful for pasting in Google Docs",
  "version": "1.2.3",
  "background": {
    "persistent": false,
    "scripts": [
      "copyLink.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon.png"
  },
  "commands": {
    "copy-link": {
      "suggested_key": {
        "default": "Ctrl+Shift+C",
        "mac": "Command+MacCtrl+C"
      },
      "description": "Copy Link as Rich Text"
    },
    "copy-as-plain": {
      "description": "Copy Link and Title as Plain Text"
    }
  },
  "permissions": [
    "clipboardWrite",
    "tabs",
    "contextMenus"
  ],
  "optional_permissions": [
    "notifications"
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'"
}