forked from Kottakji/minitranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
52 lines (51 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
45
46
47
48
49
50
51
52
{
"manifest_version": 2,
"name": "MiniTranslate",
"version": "2.2",
"description": "Translates a few words on the page in order to learn languages without much effort.",
"background": {
"scripts": [
"word-optimization.js",
"background.js"
]
},
"browser_action": {
"default_icon": "icons/favicon.png",
"default_popup": "popup.html",
"default_title": "MiniTranslate - Chinese"
},
"content_scripts": [
{
"matches": [
"http://*.org/*",
"http://*.com/*",
"http://*.co.uk/*",
"http://*.org/*",
"http://*.com.au/*",
"http://*.net.au/*",
"http://*.ca/*",
"https://*.org/*",
"https://*.com/*",
"https://*.co.uk/*",
"https://*.org/*",
"https://*.com.au/*",
"https://*.net.au/*",
"https://*.ca/*"
],
"js": [
"translate.js",
"word.js"
],
"css": [
"page.css"
]
}
],
"permissions": [
"storage"
],
"icons": {
"32": "icons/favicon.png",
"64": "icons/favicon_big.png"
}
}