25 lines
546 B
JSON
25 lines
546 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://marha.local:8000/*",
|
|
"storage"
|
|
],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["*://www.youtube.com/*"],
|
|
"js": ["tracking/content.js"]
|
|
}
|
|
],
|
|
"background": {
|
|
"scripts": ["api/background.js"]
|
|
},
|
|
"browser_action": {
|
|
"default_popup": "config/popup.html",
|
|
"default_title": "Profil auswählen"
|
|
}
|
|
}
|