-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
50 lines (47 loc) · 1.15 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
50
{
"description": "Eazy access to your StackOverflow account",
"manifest_version": 2,
"name": "StackZilla",
"version": "1.0",
"homepage_url": "https://github.com/namila007/StackZilla",
"icons": {
"64": "icons/addon.png",
"32": "icons/toolbar.png"
},
"permissions": [
"notifications",
"identity",
"*://api.stackexchange.com/*",
"*://*.stackoverflow.com/*"
],
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"browser_action": {
"default_icon": "icons/toolbar.png",
"default_title": "StackZilla",
"browser_style": true,
"default_popup": "popup/index.html"
},
"background": {
"scripts": [
"background/authorize.js",
"background/main.js",
"background/inboxInfo.js",
"background/notificationInfo.js",
"background/axios.js"
]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["popup/popup.js"]
}
],
"options_ui": {
"page": "options/options.html"
},
"author": "Namila Bandara"
}