-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
31 lines (30 loc) · 945 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
{
"name" : "Jira Jockey",
"description" :"http://stackoverflow.com/questions/14068879",
"version" : "1.1",
"manifest_version" : 3,
"permissions": [
"storage",
"*://*/*"
],
"content_scripts": [
{
"run_at" : "document_end",
"matches" : ["https://brander.atlassian.net/*"],
"css" : ["jira/jira.css"],
"js" : ["lib/lodash.js", "lib/poller.js", "lib/helpers.js", "lib/jquery.js", "jira/agile_formatter.js"]
},
{
"run_at" : "document_end",
"matches" : ["https://github.com/*"],
"css" : ["git/git.css"],
"js" : ["lib/lodash.js", "lib/poller.js", "lib/helpers.js", "lib/jquery.js", "git/git_helper.js"]
},
{
"run_at" : "document_end",
"matches" : ["*://*/*"],
"css" : ["json/json.css"],
"js" : ["lib/lodash.js", "lib/helpers.js", "lib/jquery.js", "json/json_helper.js"]
}
]
}