-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
37 lines (37 loc) · 993 Bytes
/
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
{
"manifest_version": 2,
"name": "GitHub Notifier",
"description": "Get your notifications from GitHub",
"version": "1.3.4",
"developer": {
"name": "Angel Fernando Quiroz Campos",
"url": "https://angelfqc.online"
},
"icons": {
"48": "icons/github.svg"
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icons/github.svg",
"theme_icons": [{
"light": "icons/github_light.svg",
"dark": "icons/github.svg",
"size": 16
},{
"light": "icons/github_light.svg",
"dark": "icons/github.svg",
"size": 32
}]
},
"permissions": ["*://api.github.com/notifications", "tabs", "storage", "notifications"],
"options_ui": {
"page": "options/page.html"
},
"applications": {
"gecko": {
"id": "{0906178a-2043-4d0c-a099-bd6a4d00945e}"
}
}
}