forked from cmcarthur/github-projects-story-points
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.1 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
{
"name": "GitHub Projects Story Points",
"short_name": "GitHub Projects Story Points",
"description": "Add story points to GitHub project lists by reading labels. Forked from https://github.com/brthrs/github-project-story-points",
"version": "1.1.0",
"author": "Nicola Peduzzi, Connor McArthur, Volodymyr Kuznetsov",
"content_scripts": [
{
"matches": [
"https://github.com/*/projects/*"
],
"include_globs": [
"*/projects/*"
],
"js": [
"github-storypoints.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://github.com/*/issues/*"
],
"js": [
"github-issues.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"
},
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
}
}