-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 1.04 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
46
47
48
49
50
51
{
"manifest_version": 3,
"name": "Transeleos",
"version": "1.0.0",
"author": "dhxmo",
"description": "so nothing gets lost in translation",
"permissions": [
"storage",
"unlimitedStorage",
"activeTab",
"tabs"
],
"host_permissions": [
"https://*.youtube.com/*",
"https://giffe.s3.ap-south-1.amazonaws.com/translated_audio/*",
"https://www.transeleos.com/*",
"https://transeleos.com/*"
],
"background": {
"service_worker": "service-worker.js"
},
"content_scripts": [
{
"matches": [
"https://*.youtube.com/*"
],
"js": [
"scripts/content-script.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets/logo-no-bg.png"
],
"matches": [
"https://*.youtube.com/*"
]
}
],
"action": {
"default_icon": {
"16": "assets/logo-no-bg.png",
"24": "assets/logo-no-bg.png",
"32": "assets/logo-no-bg.png"
},
"default_title": "Transeleos",
"default_popup": "popup/popup.html"
}
}