-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
37 lines (37 loc) · 989 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
{
"manifest_version": 2,
"name": "Google Scholar search engine",
"description": "Adds a search engine that searches scholar.google.com",
"developer": {
"name": "Christian Ponte",
"url": "https://github.com/chponte/google-scholar-search-engine"
},
"version": "1.2",
"chrome_settings_overrides": {
"search_provider": {
"name": "Google Scholar",
"search_url": "https://scholar.google.com/scholar?q={searchTerms}",
"keyword": "scholar",
"favicon_url": "icons/48.png",
"is_default": false,
"encoding": "UTF-8"
}
},
"permissions": [
"contextMenus"
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "icons/16.png",
"24": "icons/24.png",
"32": "icons/32.png",
"48": "icons/48.png"
},
"web_accessible_resources": [
"icons/48.png"
]
}