{ "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"] } }