forked from banyan/github-story-points
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (39 loc) · 973 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
38
39
{
"manifest_version": 2,
"name": "GitHub Story Points",
"description": "Chrome extension to see story points in GitHub projects",
"short_name": "GitHub Story Points",
"version": "0.2.7",
"author": "Kohei Hasegawa",
"homepage_url": "https://github.com/banyan/github-story-points",
"icons": {
"16": "assets/images/icon.png",
"48": "assets/images/icon.png",
"128": "assets/images/icon.png"
},
"permissions": [
"https://github.com/*",
"contextMenus",
"activeTab"
],
"optional_permissions": [
"http://*/*",
"https://*/*"
],
"background": {
"scripts": [
"dist/background.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"https://github.com/*/*/projects/*"
],
"js": [
"dist/story-points.js"
]
}
]
}