forked from kcaze/huntress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (36 loc) · 935 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
42
{
"manifest_version" : 2,
"name" : "Huntress Reverse Image Search",
"short_name" : "huntress",
"version" : "1.9",
"description" : "Crop and reverse search images using Google or TinEye. Designed specifically to aid in identifying images in puzzle hunts.",
"icons" : {
"16" : "icons/icon16.png",
"48" : "icons/icon48.png",
"128" : "icons/icon128.png"
},
"permissions" : [
"notifications", "tabs", "contextMenus", "<all_urls>"
],
"background" : {
"page" : "html/background.html",
"persistent" : false
},
"commands" : {
"screenshot" : {
"suggested_key" : {
"default" : "Ctrl+E",
"windows" : "Ctrl+E",
"mac" : "Command+E"
},
"description" : "Shortcut for screenshotting."
}
},
"browser_action" : {
"default_icon": {
"19" : "icons/icon19.png",
"38" : "icons/icon38.png"
},
"default_title": "Reverse image search page"
}
}