-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
55 lines (55 loc) · 1.25 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
52
53
54
55
{
"name": "Khan Academy Dots",
"description": "Translate math notation in Khan Academy Crowdin strings.",
"author": "Daniel Hollas & Szymon Bubak & Krzysztof Krystek & Robert Pala",
"version": "3.7.0",
"permissions": [
"activeTab",
"storage"
],
"web_accessible_resources": [{
"resources": ["5commastyle.gif"],
"matches": [
"http://crowdin.com/*",
"https://crowdin.com/*"
]
}],
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"commands": {
"translate-math": {
"suggested_key": {
"default": "Alt+C",
"mac": "MacCtrl+C"
},
"description": "Click 'translate-math' button"
}
},
"content_scripts": [
{
"matches": [
"https://crowdin.com/translate/khanacademy/*",
"https://crowdin.com/editor/khanacademy/*"
],
"js": [
"3rdPartyLibs/zepto.min.js",
"KhanAcademyLibs/jipt-hack.js",
"KhanAcademyLibs/math-translator.js",
"app.js"
],
"run_at": "document_idle",
"all_frames": true
}
],
"icons": {
"16": "khan-logo-new-16.png",
"48": "khan-logo-new-48.png",
"128": "khan-logo-new-128.png"
},
"manifest_version": 3
}