-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
49 lines (49 loc) · 1.24 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
{
"description": "Find and navigate to the tab you need",
"homepage_url": "https://www.github.com/JDuchniewicz/find-tab",
"manifest_version": 2,
"name": "Find tab",
"permissions": [
"find",
"tabs"
],
"background": {
"scripts": ["background.js"]
},
"icons": {
"32": "search.svg"
},
"browser_action": {
"browser_style": true,
"default_title": "Find tab",
"default_icon": {
"32": "search.svg"
}
},
"version": "1.1.3",
"browser_specific_settings": {
"gecko": {
"strict_min_version": "65.0"
}
},
"commands": {
"toggle-plugin": {
"suggested_key": {
"default": "Ctrl+Space"
},
"description": "Send a 'toggle-plugin' event to turn it on and off"
},
"close-Tab": {
"suggested_key": {
"default": "Ctrl+E"
},
"description": "Send a 'close-Tab' event to close the currently selected tab"
},
"toggle-search-mode": {
"suggested_key": {
"default": "Ctrl+Shift+Space"
},
"description": "Send a 'toggle-search-mode' event to alter between searching through all windows and the last window"
}
}
}