-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
49 lines (47 loc) · 1.1 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
{
"manifest_version": 3,
"name": "Nous",
"version": "1.0.0",
"description": "Nous is bookmark search engine. Use natural language search to find what you need.",
"version_name": "1.0.0",
"author": "[email protected]",
"host_permissions": ["http://*/*", "https://*/*"],
"externally_connectable": {
"matches": ["https://*.nous.fyi/*", "https://nous-revamp.vercel.app/*"]
},
"permissions": [
"activeTab",
"contextMenus",
"scripting",
"storage",
"bookmarks"
],
"commands": {
"save": {
"description": "Save the current page",
"suggested_key": {
"default": "Alt+S"
}
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["notyf.min.js", "Readability.js", "Readability-readerable.js"],
"css": ["notyf.min.css"]
}
],
"action" : {
"default_title": "Nous",
"default_popup": "popup/popup.html"
},
"icons": {
"16": "icons/logo-16.png",
"32": "icons/logo-32.png",
"48": "icons/logo-48.png",
"128": "icons/logo-128.png"
}
}