-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
44 lines (44 loc) · 1.33 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
{
"name": "Spotlight Lingo \uD83C\uDF0E. Translate Subtitles: Youtube, Netflix, Amazon Prime",
"version": "1.1.5",
"description": "Point your mouse to a subtitles word to translate it on Netflix, Amazon Prime, YouTube \uD83C\uDDEC\uD83C\uDDE7\uD83C\uDDEA\uD83C\uDDF8\uD83C\uDDE9\uD83C\uDDEA\uD83C\uDDEB\uD83C\uDDF7\uD83C\uDDEE\uD83C\uDDF9\uD83C\uDDF7\uD83C\uDDFA",
"manifest_version": 3,
"background": {
"service_worker": "src/backgroundScript.ts",
"type": "module"
},
"action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png"
},
"default_popup": "src/preferencePopup/index.html"
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png",
"1024": "icons/icon1024.png"
},
"content_scripts": [{
"matches": [
"*://*.netflix.com/*",
"*://*.kino.pub/*",
"*://*.youtube.com/*",
"*://*.primevideo.com/*"
],
"js": ["src/contentScript.ts"]
}],
"web_accessible_resources": [{
"resources": ["src/index.ts", "src/index.css", "images/demo.webp"],
"matches": ["<all_urls>"]
}],
"host_permissions": [
"https://www.netflix.com/*",
"https://kino.pub/*",
"https://www.youtube.com/*",
"https://www.primevideo.com/*"
],
"permissions": ["storage"]
}