Google Drive Path Copy Extension

An extension to copy Google Drive file paths.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Drive Path Copy Extension",
  "short_name": "Google Drive Path Copy Extension",
  "author": "SINGALO",
  "version": "1.0.2",
  "description": "An extension to copy Google Drive file paths.",
  "background": {
    "service_worker": "background.js",
    "run_at": "document_start"
  },
  "action": {
    "default_icon": "./img/icon.png",
    "default_popup": "./popup/popup.html",
    "default_title": "Google Drive Path Copy Extension"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "96": "./img/icon.png",
    "128": "./img/icon128.png"
  }
}