-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (44 loc) · 1.16 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
{
"manifest_version": 3,
"name": "Search Dock",
"version": "1.0.0",
"description": "Quick access to search across multiple sites. Uses your current search query to look on 66 other sites.",
"permissions": [
"sidePanel",
"webNavigation",
"storage"
],
"host_permissions": [
"*://www.google.com/search*",
"*://www.bing.com/search*",
"*://duckduckgo.com/*",
"*://search.brave.com/search*",
"*://search.yahoo.com/search*",
"*://www.baidu.com/s*",
"*://yandex.com/search*",
"*://www.ecosia.org/search*",
"*://www.qwant.com/*",
"*://www.startpage.com/do/search*"
],
"side_panel": {
"default_path": "sidepanel.html"
},
"background": {
"service_worker": "background.js"
},
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"default_title": "Open Search Panel"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"author": "[email protected]",
"homepage_url": "https://github.com/yourusername/search-panel"
}