-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
82 lines (72 loc) · 1.49 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
73
74
75
76
77
78
79
80
81
82
{
"manifest_version": 2,
"name": "Blitzkreig",
"version": "1.0",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"description": "Blitzkreig Firefox plugin.",
"icons": {
"48": "icons/border-48.png"
},
"browser_action": {
"default_icon": "/icons/border-48.png",
"default_popup": "/html/popup.html"
},
"web_accessible_resources" : [
"/img/*"
],
"permissions": [
"storage",
"http://*/*",
"https://*/*",
"activeTab",
"contextMenus",
"downloads",
"tabs"
],
"background": {
"scripts": [
"/lib/jquery-3.3.1.min.js",
"/js/background.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"/lib/jquery-3.3.1.min.js",
"/js/jquery-ui.js"
],
"run_at": "document_end"
},
{
"matches": [ "*://sharepoint.cirrushosting.com/KB/t2t/Lists/Activities/DispForm.aspx*" ],
"css": [
"/css/jquery-ui.css",
"/css/index.css"
],
"js": [
"/lib/jquery-3.3.1.min.js",
"/js/jquery-ui.js",
"/js/index.js"
],
"run_at": "document_end"
},
{
"matches": [ "*://portal.cirrushosting.com/admin/index.php?cmd=tickets&action=new&client_id*" ],
"css": [
"/css/jquery-ui.css",
"/css/index.css"
],
"js": [
"/lib/jquery-3.3.1.min.js",
"/js/jquery-ui.js",
"/js/openticket.js"
],
"run_at": "document_end"
}
]
}