Copy URL And Title

Copy URL And Title

Copy page URL and title with different format

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Copy URL And Title",
  "description": "Copy page URL and title with different format",
  "version": "1.15",
  "version_name": "1.15-20240425",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "permissions": [
    "clipboardWrite"
  ],
  "optional_host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "38": "icon_38.png",
    "86": "icon_86.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icon_38.png",
    "default_title": "Click to copy url and title"
  },
  "manifest_version": 3
}