-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 1020 Bytes
/
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
{
"name": "__MSG_extName__",
"description": "__MSG_extDescription__",
"version": "0.3",
"permissions": ["tabs", "contextMenus", "http://*/*", "https://*/*"],
"background": {
"scripts" : ["background.js"]
},
"manifest_version": 3,
"default_locale": "de",
"page_action": {
"default_icon": "icons/19.png",
"default_title": "__MSG_pageActionTitle__"
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"css" : ["generateLiteContainer.css"],
"js" : ["js/jquery-1.7.1.min.js", "generateLiteContainer.js"],
"run_at": "document_start",
"all_frames": true
},
{
"matches": ["http://*/*", "https://*/*"],
"js" : ["rightclick_hook.js"],
"run_at": "document_end",
"all_frames": true
}
],
"icons": {
"16" : "icons/16.png",
"48" : "icons/48.png",
"64" : "icons/64.png",
"128" : "icons/128.png"
},
"homepageUrl": "http://collabeverywhere.net/",
"update_url": "http://collabeverywhere.net/eplite-context.xml"
}