Inspect and view changes in Rate My CSULB Professors source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Rate My CSULB Professors",
"version": "1.0.5",
"description": "Display RateMyProfessors ratings for professors at CSULB.",
"permissions": [],
"host_permissions": [
"https://ratemyprofessors.com/graphql",
"https://www.ratemyprofessors.com/graphql"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://*.csulb.edu/*",
"https://csulb.collegescheduler.com/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"images/*.svg",
"emojis.json",
"images/*.png",
"nameMappings.json",
"excludedSubjects.json"
],
"matches": [
"https://*.csulb.edu/*",
"https://csulb.collegescheduler.com/*"
]
}
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
}