Files
youtube-app/browser_extension/manifest.json
2026-04-04 22:28:19 +02:00

20 lines
406 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/*"
],
"content_scripts": [
{
"matches": ["*://www.youtube.com/*"],
"js": ["content.js"]
}
],
"background": {
"scripts": ["background.js"]
}
}