forked from MuradAkh/UofTCourseInfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
66 lines (65 loc) · 1.98 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
{
"background": {
"scripts": [
"src/contentscripts/background.js"
]
},
"browser_action": {
"default_icon": {
"128": "images/Acorn_128.png",
"48": "images/Acorn_48.png",
"16": "images/Acorn_16.png"
},
"default_title": "UofT Course Info",
"default_popup":"src/popup/popup.html"
},
"content_scripts": [
{
"css": [
"dependencies/tippy/light.css"
],
"js": [
"dependencies/jquery/jquery.min.js",
"dependencies/tippy/tippy.all.min.js",
"src/contentscripts/util.js"
],
"matches": [
"\u003Call_urls>"
]
},
{
"js": [
"src/contentscripts/textbookLinker.js"
],
"matches": [
"http://courseinfo.murad-akh.ca/textbooks/*"
]
}
],
"description": "Adds informative tooltips to University of Toronto courses mentioned across the web",
"icons": {
"128": "images/Acorn_128.png",
"48": "images/Acorn_48.png",
"16": "images/Acorn_16.png"
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4DfgytR+GzrCMqHW946oGojHg73K75sH2FUYEinr+Fn7VQkDPGZTOwc8uYzXBBamwv6x4XV1eoS17CkCS38S97bhyR0mPJ72On9HkOL1gb8RXKShwOdriDNh/AM/wLK4AEGYYRwutZBZBg3zOYl4dHpPS9Br+6iAs86J7t8Eqkvk1FMtpGrxEdPKca/oqo7+oIdIixIaq67Zn0/A09DcyJkQ+BXmtVeQWtDihTE7+5jpeTA5UHK4CDIqJ/IDupqcSWBUA0OK9XvpwRcOkrQvuZiOq0jiLjc3GdtbZYOX81+kYo7oLifXRTH1PATH9GV4Qh0qH9IzTPEevdIcJAAUpQIDAQAB",
"manifest_version": 2,
"name": "UofT Course Info",
"permissions": [
"activeTab",
"*://*/*",
"tabs",
"storage",
"notifications"
],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "4.5.0",
"options_page": "src/settings/settings.html",
"web_accessible_resources": [
"dependencies/tipped/tipped.css",
"data/directory.json",
"src/settings/settings.html",
"src/about/index.html"
],
"content_security_policy": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https://maxcdn.bootstrapcdn.com"
}