{
   "manifest_version": 2,
   "name": "Copy YouTube URL on Hover",
   "version": "1.0",
   "permissions": ["activeTab", "clipboardWrite"],
   "background": {
      "scripts": ["background.js"]
   },
   "content_scripts": [
      {
         "matches": ["<https://www.youtube.com/*>"],
         "js": ["content.js"]
      }
   ],
   "browser_action": {
      "default_popup": "popup.html",
      "default_icon": {
         "16": "icons/icon16.png",
         "48": "icons/icon48.png",
         "128": "icons/icon128.png"
      }
   }
}