-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
65 lines (61 loc) · 1.57 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
{
"manifest_version": 2,
"name": "RIPS Extension - Validation",
"version": "1.5.1",
"description": "RIPS Extension - Adds validation on UNHCR #, Phone #, and DOB",
"permissions": [
"storage",
"tabs"
],
"browser_action": {
"default_icon": {
"32": "img/icon32.ico" // unpacked exts need .png :)
}
// "default_popup": "html or js here"
},
"icons": {
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_scripts": [
{
"matches": [
"http://rips.247lib.com/Stars/*",
"https://rips.247lib.com/Stars/*"
],
"css": [
"css/overrides/styles_ALL.css"
],
"js": [
"js/jquery-3.1.1.min.js",
"js/Utils.js",
"js/ErrorThrowingAPI.js",
"js/SetupSubmitListeners.js",
"js/ViewManipulator.js",
"js/MainContent.js"
]
}, {
"matches": [
"http://rips.247lib.com/Stars/ClientDetails/ClientDetails",
"https://rips.247lib.com/Stars/ClientDetails/ClientDetails"
],
"css": [ "css/overrides/styles_CBI.css" ]
}, {
"matches": [
"http://rips.247lib.com/Stars/Registration/Registration",
"https://rips.247lib.com/Stars/Registration/Registration"
],
"css": [ "css/overrides/styles_REG.css" ]
}, {
"matches": [
"http://rips.247lib.com/Stars/Report/ReportPreview*",
"https://rips.247lib.com/Stars/Report/ReportPreview*"
],
"css": [ "css/overrides/styles_RPT.css" ]
}
],
"background": {
"page": "html/background.html"
},
"content_security_policy":"script-src 'self' 'unsafe-eval' https://www.gstatic.com/ https://*.firebaseio.com https://www.googleapis.com; object-src 'self'"
}