-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
38 lines (33 loc) · 898 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
32
33
34
35
36
37
38
{
"manifest_version": 2,
"name": "Rate My Bull",
"description": "View professor ratings from RateMyProfessor when signing up for classes on the USF schedule planner",
"version": "1.0",
"permissions": ["https://usf.collegescheduler.com/*", "tabs", "https://search.mtvnservices.com/typeahead/suggest/*"],
"background": {
"scripts": ["background.js"]
},
"page_action": {
"default_icon": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"16": "icon.png",
"32": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"web_accessible_resources": ["tooltip.css"],
"content_scripts": [
{
"matches": ["https://usf.collegescheduler.com/*"],
"css": ["tooltip.css"],
"js": ["RateMyBull.js", "jquery-3.3.1.js"],
"run_at": "document_idle"
}
]
}