Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Find Your Professor",
"description": "Instantly find and save your professor from your college on Rate My Professor!",
"author": "Rayan Chahid",
"version": "1.5",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"permissions": [
"contextMenus",
"https:\/\/www.ratemyprofessors.com\/*",
"storage",
"webNavigation",
"tabs"
],
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.ratemyprofessors.com\/*"
],
"js": [
"content.js"
]
}
],
"action": {
"default_popup": "popup.html"
}
}