forked from AmirAnsarpour/Coursera-Subtitle-Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (40 loc) · 1.07 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
{
"manifest_version": 2,
"name": "Coursera Subtitle Extensions",
"description": "Hello, this is a project to change the language of courses subtitles because I noticed that many people have trouble due to the lack of subtitles in their native language. I thought to myself that I could create a subtitle translator using Google Translate API",
"version": "0.0.0.1",
"browser_action": {
"default_popup": "index.html",
"default_icon": {
"16": "images/16.png",
"32": "images/32.png"
}
},
"icons": {
"16": "images/16.png",
"32": "images/32.png",
"48": "images/48.png",
"128": "images/128.png"
},
"content_scripts": [
{
"matches": [
"*://www.coursera.org/*"
],
"js": [
"js/main.js"
]
}
],
"background": {
"scripts": [
"js/main.js"
],
"persistent": false
},
"permissions": [
"tabs",
"storage",
"activeTab"
]
}