-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
executable file
·37 lines (37 loc) · 1008 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
{
"name": "Multi Subsitles Youtube",
"description": "Display as many subtitles as you like. Different languages, translated, auto-generated. NO dependency on third-party server",
"manifest_version": 2,
"version": "0.9.5",
"homepage_url": "https://garywill.github.io",
"developer": {
"name": "Garywill",
"url": "https://github.com/garywill/multi-subs-yt"
},
"permissions": [
"activeTab",
"storage"
],
"page_action": {
"default_title": "Multi Subsitles Youtube",
"browser_style": true,
"default_popup": "popup.html",
"show_matches": [ "*://www.youtube.com/watch*" ],
"default_icon": {
"128": "icon.png"
}
},
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "icon.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{e624fdbf-02a8-4f25-90d8-47d23347cf9b}"
}
}
}