Files
youtube-app/browser_extension/manifest.json
2026-04-05 20:43:35 +02:00

25 lines
524 B
JSON

{
"manifest_version": 2,
"name": "YouTube Video Erfasser",
"version": "1.0",
"description": "Erfasst YouTube-Videos und sendet sie an den Server",
"permissions": [
"*://www.youtube.com/*",
"http://localhost:8000/*",
"storage"
],
"content_scripts": [
{
"matches": ["*://www.youtube.com/*"],
"js": ["content.js"]
}
],
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_popup": "popup.html",
"default_title": "Profil auswählen"
}
}