{
"manifest_version": 2,
"name": "Copy and Save YouTube URL",
"version": "1.0",
"permissions": [
"activeTab",
"clipboardWrite",
"storage"
],
"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"
}
}
}