This commit is contained in:
Marek
2026-04-04 22:28:19 +02:00
parent 90b7ac42a9
commit 7fcc07b1a8
3 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
// TODO: Nachrichten vom Content Script empfangen und an Server senden
console.log("Background Script geladen");

View File

@@ -0,0 +1,2 @@
// TODO: YouTube-DOM auslesen und Videodaten extrahieren
console.log("YouTube Video Erfasser geladen");

View File

@@ -0,0 +1,19 @@
{
"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"]
}
}