-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
41 lines (41 loc) · 1007 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"manifest_version": 3,
"name": "TubeTasTic",
"description": "YouTube video analyzer with focus mode and custom themeing",
"version": "0.4.0",
"icons": {
"64": "img/icon64.png",
"256": "img/icon256.png"
},
"action": {
"default_title": "TubeTasTic",
"default_popup": "dist/popup.html"
},
"permissions": [
"activeTab",
"storage",
"webRequest",
"cookies",
"scripting"
],
"host_permissions": [
"https://*.youtube.com/*"
],
"background": {
"service_worker": "dist/worker.js"
},
"content_scripts": [
{
"js": [
"dist/foreground.js",
"dist/inject_buttons.js",
"dist/contentScript.js",
"dist/content.js"
],
"css": ["dist/yt_styles.css", "public/green_theme.css"],
"matches": [
"*://*.youtube.com/*"
]
}
]
}