forked from artemave/translate_onhover
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
48 lines (48 loc) · 1.38 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
{
"name": "TransOver",
"manifest_version": 2,
"version": "1.8",
"icons": { "16": "to_16.png", "48": "to_48.png", "128": "to_128.png" },
"description": "Hover, click or select to translate (with text-to-speech)",
"background": { "scripts": [
"lib/jquery.min.js",
"lib/lodash.min.js",
"lib/xregexp-min.js",
"lib/xregexp-unicode-base.js",
"lib/xregexp-unicode-categories.js",
"lib/transover_utils.js",
"lib/options.js",
"background.js"
]
},
"options_page": "options.html",
"content_scripts": [{
"matches": [ "<all_urls>" ],
"all_frames": true,
"js": [
"lib/jquery.min.js",
"lib/xregexp-min.js",
"lib/xregexp-unicode-base.js",
"lib/xregexp-unicode-categories.js",
"lib/tooltip.js",
"lib/jquery.hotkeys.js",
"lib/jaml.js",
"lib/languages.js",
"lib/transover_utils.js",
"lib/type_and_translate.js",
"contentscript.js"
],
"css": ["page.css"]
}],
"browser_action": {
"default_icon": {"38": "to_38.png", "19": "to_19.png"}
},
"permissions": [ "*://translate.google.com/*", "tabs", "tts" ],
"web_accessible_resources": [
"iframe.css",
"options.html",
"refresh_blue.png",
"refresh_grey.png"
],
"content_security_policy": "script-src 'self' 'unsafe-eval' https://ssl.google-analytics.com https://translate.google.com; object-src 'self'"
}