-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
31 lines (31 loc) · 1013 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
{
"name": "Rate It!",
"description": "Rate and discuss every Website you can find.",
"version": "2.0",
"background": {
"service_worker": "background.js"
},
"manifest_version": 3,
"permissions": ["storage", "tabs", "identity"],
"host_permissions": ["https://rateit.timon-gaertner.ga/"],
"content_scripts": [{
"matches": ["https://www.youtube.com/*"],
"js": ["jquery.js", "content_script_incection_rateIt.js", "youtubeVideo.js"],
"run_at": "document_idle"
}],
"action": {
"default_popup": "extension-popup/index.html",
"default_icon": {
"16": "/logos/rateItLogo16.png",
"32": "/logos/rateItLogo32.png",
"48": "/logos/rateItLogo64.png",
"128": "/logos/rateItLogo128.png"
}
},
"icons": {
"16": "/logos/rateItLogo16.png",
"32": "/logos/rateItLogo32.png",
"48": "/logos/rateItLogo64.png",
"128": "/logos/rateItLogo128.png"
}
}