-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
40 lines (40 loc) · 1.14 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
{
"manifest_version": 3,
"name": "Kagi Search",
"version": "1.2.2.3",
"description": "Set Kagi as your default search engine while also preserving your session in private browsing. Remember to enable 'Allow Incognito'.",
"background": {
"service_worker": "service_worker.js",
"type": "module"
},
"icons": {
"16": "icons/icon_16px.png",
"32": "icons/icon_32px.png",
"48": "icons/icon_48px.png",
"180": "icons/icon_180px.png"
},
"action": {
"default_icon": "icons/icon_32px.png",
"default_title": "Kagi Search",
"default_popup": "popup.html"
},
"permissions": [
"contextMenus",
"cookies",
"declarativeNetRequestWithHostAccess",
"webRequest"
],
"host_permissions": ["https://*.kagi.com/*"],
"chrome_settings_overrides": {
"search_provider": {
"name": "Kagi",
"search_url": "https://kagi.com/search?q={searchTerms}",
"favicon_url": "https://assets.kagi.com/v2/favicon-32x32.png",
"keyword": "@kagi",
"is_default": true,
"suggest_url": "https://kagi.com/api/autosuggest?q={searchTerms}",
"encoding": "UTF-8"
}
},
"incognito": "spanning"
}