forked from mircealungu/Zeeguu-Browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
87 lines (87 loc) · 2.55 KB
/
manifest.json
File metadata and controls
87 lines (87 loc) · 2.55 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"web_accessible_resources": [
"gui/html/ext_dict_frame.html",
"gui/html/login.html",
"gui/html/error.html",
"gui/html/toolbar-popup.html",
"gui/css/gui.css",
"gui/js/ext_dict_frame.js",
"gui/js/login.js",
"gui/js/toolbar-popup.js",
"gui/img/loading.gif",
"lib/jquery/jquery.validate.js",
"lib/jquery/jquery.js",
"lib/bootstrap/bootstrap.js",
"lib/bootstrap/bootstrap.css",
"lib/fa-4.3/fonts/*"
],
"commands": {
"translate": {
"suggested_key": {
"default": "Alt+Z"
},
"description": "Translate selected word"
}
},
"description": "The web as your language textbook",
"icons": {
"128": "logo/128x128.png",
"48": "logo/48x48.png",
"16": "logo/16x16.png"
},
"manifest_version": 2,
"name": "Zeeguu",
"version": "1.302",
"options_page": "gui/html/plugin-preferences.html",
"background": {
"scripts": [
"lib/jquery/jquery.js",
"lib/browser.js",
"lib/zeeguu_api_interface.js",
"bg/js/extension-state.js",
"inject/js/whitelisted_domains.js",
"bg/js/bg.js",
"bg/js/work-before-play.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"css": [
"inject/css/inject.css",
"lib/fa-4.3/css/font-awesome.min.css"
],
"js": [
"lib/jquery/jquery.js",
"lib/browser.js",
"lib/zeeguu_api_interface.js",
"inject/js/whitelisted_domains.js",
"inject/js/highlight_words.js",
"inject/js/extract-context.js",
"inject/js/link-enabling.js",
"inject/js/translation_overlay.js",
"inject/js/ext_dict_operation.js",
"inject/js/font-awesome.js",
"inject/js/content_script.js"
]
}
],
"browser_action": {
"default_icon": {
"19": "logo/19x19.png",
"38": "logo/38x38.png"
},
"default_title": "Zeeguu",
"default_popup": "gui/html/toolbar-popup.html"
},
"permissions": [
"storage",
"tabs",
"contextMenus",
"https://www.zeeguu.unibe.ch/",
"http://127.0.0.1:8080/"
]
}