-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 786 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 786 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
{
"name": "GitHub Projects Story Points",
"short_name": "SCRUM GitHub",
"description": "Add story points to GitHub project lists",
"version": "1.0.0",
"author": "Nicola Peduzzi",
"content_scripts": [
{
"matches": [
"https://*/*/issues/*", "https://*/*/issues", "https://*/*/projects/*"
],
"include_globs": [
"*/projects/*",
"*/issues*",
"*/pulls*"
],
"js": [
"github-storypoints.js"
],
"run_at": "document_idle"
}
],
"manifest_version" : 2,
"icons": {
"16": "github-storypoints-icon-16.png",
"32": "github-storypoints-icon-32.png",
"24": "github-storypoints-icon-24.png",
"48": "github-storypoints-icon-48.png",
"128": "github-storypoints-icon-128.png"
}
}