forked from treejames/XTranslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (42 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
{
"name" : "XTranslate",
"description" : "__MSG_0__",
"version" : "1.190",
"manifest_version": 2,
"default_locale" : "en",
"options_page" : "options.html",
"icons" : {
"16" : "img/icons/16.png",
"48" : "img/icons/48.png",
"128": "img/icons/128.png"
},
"browser_action": {
"default_icon" : {
"19" : "img/icons/48.png",
"38" : "img/icons/48.png"
},
"default_popup": "options.html"
},
"background": {
"scripts" : ["js/require.js", "js/libs/jquery.min.js", "js/background.js"],
"persistent": false
},
"web_accessible_resources": ["img/*", "js/*", "fonts/*"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"all_frames": true,
"matches" : ["http://*/*", "https://*/*", "file://*/*"],
"css" : ["css/injected.css"],
"js" : ["js/require.js", "js/libs/jquery.min.js", "js/injected.js"]
}
],
"permissions": [
"tabs", "storage", "contextMenus",
"*://translate.google.com/",
"*://translate.yandex.net/",
"*://tts.voicetech.yandex.net/",
"*://api.microsofttranslator.com/",
"*://*.bing.com/"
]
}