-
Notifications
You must be signed in to change notification settings - Fork 19
/
manifest.json
45 lines (36 loc) · 1.01 KB
/
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
42
43
44
45
{
"manifest_version": 2,
"name": "Youtube Watchmarker",
"description": "Automatically mark videos on Youtube that you have already watched.",
"homepage_url": "https://sniklaus.com/",
"version": "4.6.1",
"permissions": ["alarms", "downloads", "history", "tabs", "cookies", "webRequest", "webRequestBlocking", "https://www.youtube.com/*"],
"options_ui": {
"page": "content/index.html",
"open_in_tab": true
},
"icons": {
"72": "content/icon.png"
},
"applications": {
"gecko": {
"id": "yourect@coderect.com",
"strict_min_version": "55.0"
}
},
"background": {
"scripts": ["background.js"]
},
"content_scripts": [{
"matches": ["*://www.youtube.com/*"],
"css": [],
"js": ["youtube.js"]
}],
"browser_action": {
"browser_style": false,
"default_title": "Youtube Watchmarker",
"default_icon": {
"72" : "content/icon.png"
}
}
}