Copy page title and url

Copy page title and url

Add a context menu item to copy page title (or selected text) and url to clipboard.

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 page title and url",
  "short_name": "Copy title and url",
  "description": "Add a context menu item to copy page title (or selected text) and url to clipboard.",
  "version": "1.3",
  "homepage_url": "https://github.com/marekjedlinski/webext-copy-title-url",
  "author": "Marek Jedliński",
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/copy_title_and_url.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "clipboardWrite"
  ],
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "57.0"
    }
  }
}