-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 810 Bytes
/
manifest.json
File metadata and controls
33 lines (33 loc) · 810 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
31
32
33
{
"name": "Social Coding Notification",
"version": "1.0",
"manifest_version": 2,
"description": "Notify the events on your social coding accounts.",
"browser_action": {
"default_icon": "images/bitbucket-icon19.png",
"default_popup": "popup.html"
},
"background": {
"page": "background.html"
},
"permissions": [
"https://*.github.com/",
"https://*.bitbucket.org/",
"https://*.google.com/",
"http://*.google.com/",
"storage",
"notifications",
"tabs"
],
"web_accessible_resources": [
"images/bitbucket-icon19.png",
"images/bitbucket-icon48.png",
"images/github-icon-19.png",
"images/github-icon-48.png",
"images/loading.gif"
],
"icons": {
"48": "images/bitbucket-icon48.png",
"128": "images/bitbucket-icon128.png"
}
}