-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (41 loc) · 1.05 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": "Mendeley Related for Chrome - ALPHA",
"version": "0.2",
"description": "Displays related research based on current Web page.",
"background_page": "background.html",
"icons": {
"20": "images/icon20.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon20.png",
"default_title": "Mendeley Related",
"popup": "popup.html"
},
"update_url": "http://209.20.87.193/mendeleyRelated4ChromeUpdates.xml",
"permissions": [
"http://www.mendeley.com/*",
"http://api.mendeley.com/*",
"tabs",
"contextMenus",
"http://*/*",
"https://*/*"
],
"content_scripts": [
{
"matches":["http://*/*", "https://*/*"],
"css": [
"css/widget.css"
],
"js": [
"js/libs/jquery-1.5.2.min.js",
"js/research.js",
"js/chrome.js",
"js/init.js",
"js/widget.js",
"js/contextmenu.js"
]
}
]
}