-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
31 lines (31 loc) · 870 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":"EMU Print Center",
"description":"EMU Print Center checkout and management system",
"version":"1",
"manifest_version":2,
"background": {
"page": "background.html",
"persistent": true
},
"content_security_policy": "script-src 'self' 'unsafe-eval' https://*.firebaseio.com https://apis.google.com; object-src 'self'",
"content_scripts": [
{
"matches": ["https://ebill.emich.edu/C20704_ustores/*"],
"js": ["inject.js"],
"css": ["./css/inject.css"],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"/inject-toolbar.html"
],
"browser_action": {
"default_popup": "/popup.html",
"default_icon": "assets/img/icon.png"
},
"permissions": [
"tabs",
"cookies",
"*://ebill.emich.edu/*"
]
}