-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (41 loc) · 857 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
39
40
41
{
"name": "Recall",
"manifest_version": 2,
"icons": {
"128": "recall_icon.png"
},
"description" : "To use, type 're' plus a search term into the Omnibox.",
"version": "0.1.0",
"permissions": [
"storage",
"bookmarks",
"webRequest",
"tabs",
"notifications",
"chrome://favicon/"
],
"background": {
"scripts": ["recall.js", "background.js"]
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"js": ["recall.js", "inject.js"],
"css": ["inject.css"]
}],
"omnibox": {
"keyword" : "re"
},
"options_ui": {
"page": "options.html",
"chrome_style": false
},
"commands": {
"bookmark_current_page": {
"suggested_key": {
"default": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y"
},
"description": "Bookmark current page"
}
}
}