-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (31 loc) · 899 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
{
"manifest_version": 2,
"name": "KU | Search RateMyProfessors",
"version": "1.2",
"author": "James Mendel",
"homepage_url": "https://jamesmendel.github.io",
"description": "Updates professor link on classes.ku.edu to go directly to that professors RateMyProfessors page.",
"icons": {
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "ku-rmp@jamesmendel",
"update_url": "https://raw.githubusercontent.com/jamesmendel/ku-rmp/master/update-manifest.json"
}
},
"web_accessible_resources": [
"ku-rmp.js"
],
"content_scripts": [{
"matches": [
"http://classes.ku.edu/*",
"https://classes.ku.edu/*"
],
"js": [
"app.js"
],
"run_at": "document_end"
}]
}