-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
42 lines (42 loc) · 1.19 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
{
"name" : "Any School Rate My Professors Extension",
"version" : "1.2.4",
"description" : "Shows the Rate My Professors rating of professors while searching for classes.",
"permissions": [
"https://search-production.ratemyprofessors.com/*",
"https://raw.githubusercontent.com/carltonnorthern/nickname-and-diminutive-names-lookup/master/names.csv/",
"activeTab",
"declarativeContent"
],
"optional_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
"node_modules/tippy.js/dist/tippy.css",
"node_modules/tippy.js/themes/light.css",
"prof-rating.css",
"node_modules/compromise/builds/compromise.min.js",
"node_modules/arrive/minified/arrive.min.js",
"node_modules/@popperjs/core/dist/umd/popper.min.js",
"node_modules/tippy.js/dist/tippy-bundle.umd.min.js",
"utils.js",
"contentscript.js"
],
"page_action": {
"default_icon": "images/favicon-16-gray.png"
},
"background": {
"scripts": [
"node_modules/papaparse/papaparse.min.js",
"background.js"
],
"persistent": false
},
"icons": {
"16": "images/favicon-16.png",
"48": "images/favicon-48.png",
"128": "images/favicon-128.png"
},
"manifest_version" : 2
}