update
This commit is contained in:
19
browser_extension/manifest.json
Normal file
19
browser_extension/manifest.json
Normal 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"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user