-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (33 loc) · 913 Bytes
/
manifest.json
File metadata and controls
41 lines (33 loc) · 913 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
34
35
36
37
38
39
40
41
{
"manifest_version": 3,
"name": "GitHub to JIRA Links",
"version": "1.2.1",
"description": "This extension detects JIRA issue tags in GitHub comments and titles of pull requests, and turns them into hyperlinks.",
"icons" : {
"16" : "img/64jira.png",
"64" : "img/64jira.png",
"128" : "img/64jira.png"
},
"action": {
"default_icon": "img/64jira.png",
"default_popup": "src/popup.html",
"default_title": "GitHub to JIRA Links"
},
"author": "Jonathan Tsai (@jontsai)",
"content_scripts": [
{
"matches": ["https://github.com/*", "https://*/*"],
"css": [],
"js": [
"src/js/github_jira.js"
]
}
],
"options_ui": {
"page": "src/options.html"
},
"permissions": [
"storage"
],
"short_name": "GitHub JIRA"
}