-
Notifications
You must be signed in to change notification settings - Fork 15
/
manifest.json
55 lines (53 loc) · 1.34 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
50
51
52
53
54
55
{
"manifest_version":2,
"name": "Auto Sci-Hub",
"version": "2.3",
"description": "Auto-modify the url to load Sci-Hub page with your article",
"author": "RoiArthurB",
"homepage_url": "https://github.com/RoiArthurB/Side-Auto_Sci-Hub",
"permissions": [
"activeTab",
"contextMenus",
"storage"
],
"options_ui": {
"page": "options.html",
"browser_style": true,
"chrome_style": true
},
"background": {
"scripts": ["shRedirect.js"]
},
"icons": {
"16": "icons/logo-16.png",
"24": "icons/logo-24.png",
"32": "icons/logo-32.png",
"64": "icons/logo-64.png",
"128": "icons/logo-128.png",
"256": "icons/logo-256.png"
},
"browser_action": {
"default_icon": {
"16": "icons/icon-16.png",
"19": "icons/icon-19.png",
"24": "icons/icon-24.png",
"32": "icons/icon-32.png",
"38": "icons/icon-38.png"
},
"default_title": "Open in Sci-hub"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Open current page on Sci-Hub"
}
}
}