forked from r4reetik/budget-manager-crx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 1.19 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
{
"manifest_version": 2,
"name": "Budget Manager",
"version": "20.6.15.17",
"description": "It'll help you to manage your spendings.",
"icons": {
"16": "icons/budget_16p.png",
"24": "icons/budget_24p.png",
"32": "icons/budget_32p.png",
"48": "icons/budget_48p.png",
"64": "icons/budget_64p.png",
"72": "icons/budget_72p.png",
"96": "icons/budget_96p.png",
"128": "icons/budget_128p.png"
},
"browser_action": {
"default_icon": {
"16": "icons/budget_16p.png",
"24": "icons/budget_24p.png",
"32": "icons/budget_32p.png",
"48": "icons/budget_48p.png",
"64": "icons/budget_64p.png",
"72": "icons/budget_72p.png",
"96": "icons/budget_96p.png",
"128": "icons/budget_128p.png"
},
"default_title": "Budget Manager",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"background": {
"scripts": ["scripts/background.js"],
"persistent": false
},
"permissions": ["storage", "notifications", "contextMenus"]
}