-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
23 lines (23 loc) · 756 Bytes
/
manifest.json
File metadata and controls
23 lines (23 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"manifest_version": 3,
"name": "Quotely",
"version": "1.0",
"description": "A clean and modern Extension that displays inspirational quotes. Made by @Flamevel",
"permissions": ["storage", "sidePanel"],
"background": {
"service_worker": "src/scripts/background.js"
},
"action": {
"default_title": "Quotely"
},
"side_panel": {
"default_path": "src/pages/main.html"
},
"icons": {
"16": "assets/favicons/quotely-favicon-16x16.png",
"32": "assets/favicons/quotely-favicon-32x32.png",
"48": "assets/favicons/quotely-favicon-48x48.png",
"64": "assets/favicons/quotely-favicon-64x64.png",
"128": "assets/favicons/quotely-favicon-128x128.png"
}
}