-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmanifest.json
72 lines (72 loc) · 2.04 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"author": "John Murphy - Gateway Apps, LLC",
"content_scripts": [
{
"matches": ["*://github.com/*/*/issues"],
"exclude_matches": ["*://github.com/*/*/issues/*"],
"js": [
"./jquery/jquery-3.6.0.min.js",
"./handlebars.runtime.min-v4.7.7.js",
"./lib/populateUrlMetadata.js",
"./lib/createFilters.js",
"./lib/addBlockQuote.js",
"./lib/preventReferences.js",
"./batch.js",
"./template.js"
],
"css": ["./css/style.css"],
"run_at": "document_end"
},
{
"matches": ["*://github.com/*/*/issues/*"],
"exclude_matches": ["*://github.com/*/*/issues"],
"js": [
"./jquery/jquery-3.6.0.min.js",
"./handlebars.runtime.min-v4.7.7.js",
"./lib/populateUrlMetadata.js",
"./lib/createFilters.js",
"./lib/addBlockQuote.js",
"./lib/preventReferences.js",
"./app.js",
"./template.js"
],
"css": ["./css/style.css"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"description": "This extension shows a button on Github issue pages that can be used to clone github issues across repositories",
"icons": {
"128": "icons/storm-trooper-128.png"
},
"manifest_version": 3,
"name": "Kamino",
"options_page": "options.html",
"permissions": ["background", "scripting", "storage", "webNavigation"],
"host_permissions": ["*://github.com/*"],
"version": "4.1.2",
"web_accessible_resources": [
{
"resources": [
"icons/*.png",
"bootstrap/js/bootstrap.min.js",
"./css/style.css",
"./css/options.css",
"jquery/jquery-3.6.0.min.js",
"handlebars.runtime.min-v4.7.7.js",
"lib/populateUrlMetadata.js",
"lib/createFilters.js",
"lib/addBlockQuote.js",
"lib/preventReferences.js",
"template.js",
"app.js",
"options.html",
"options.js",
"background.js"
],
"matches": ["*://github.com/*"]
}
]
}