Copy Page Title and URL

Copy Page Title and URL

A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy Page Title and URL",
  "version": "0.1",
  "description": "A Chrome extension that allows you to copy both the page title and URL using the keyboard shortcut Ctrl+Shift+P.",
  "manifest_version": 3,
  "permissions": [
    "clipboardWrite",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "commands": {
    "copy-to-clipboard": {
      "suggested_key": {
        "default": "Ctrl+Shift+P"
      },
      "description": "Copy page title and URL to clipboard"
    }
  },
  "icons": {
    "512": "logo.png"
  }
}