-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (30 loc) · 848 Bytes
/
manifest.json
File metadata and controls
30 lines (30 loc) · 848 Bytes
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
{
"manifest_version": 3,
"name": "GitHub Notifier Pro",
"version": "1.2.1",
"description": "GitHub notifications in the browser toolbar",
"minimum_chrome_version": "99",
"permissions": ["alarms", "storage", "notifications"],
"host_permissions": ["https://api.github.com/*", "https://github.com/*"],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"background": {
"service_worker": "src/background/service-worker.js",
"type": "module"
},
"action": {
"default_popup": "src/popup/popup.html",
"default_icon": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"default_title": "GitHub Notifier Pro"
},
"icons": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
}
}