-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathmanifest.json
More file actions
51 lines (51 loc) · 1.4 KB
/
Copy pathmanifest.json
File metadata and controls
51 lines (51 loc) · 1.4 KB
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
{
"manifest_version": 3,
"name": "Search Bookmarks, History and Tabs",
"description": "Browser extension to (fuzzy) search and navigate bookmarks, history and open tabs.",
"homepage_url": "https://github.com/Fannon/search-bookmarks-history-and-tabs",
"author": "Simon Heimler",
"version": "2.4.0",
"permissions": ["tabs", "bookmarks", "history", "storage", "tabGroups"],
"optional_permissions": ["favicon"],
"action": {
"default_popup": "/popup/index.html",
"default_title": "Search Bookmarks, History and Tabs",
"default_icon": {
"16": "/images/logo-16.png",
"32": "/images/logo-32.png",
"48": "/images/logo-48.png",
"128": "/images/logo-128.png"
}
},
"options_ui": {
"page": "/popup/bookmarkManager.html#options",
"open_in_tab": true
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+Period",
"mac": "Command+Shift+Period"
},
"description": "Open search popup"
}
},
"icons": {
"16": "/images/logo-16.png",
"32": "/images/logo-32.png",
"48": "/images/logo-48.png",
"128": "/images/logo-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{bd5cec91-8853-40d9-aa80-8388a4544bd3}",
"strict_min_version": "126.0"
}
},
"web_accessible_resources": [
{
"resources": ["_favicon/*"],
"matches": ["<all_urls>"]
}
]
}