TitleUrlCopy

TitleUrlCopy

When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TitleUrlCopy",
  "description": "When you press command+c(mac) or ctrl+c(win) with no character selected, save the page title and URL on the clipboard.",
  "version": "1.4.1",
  "manifest_version": 3,
  "homepage_url": "https://github.com/takedajs/TitleUrlCopy_Chrome",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}