RateMyTracks
Get clear insights into professors at the University of Alberta while browsing Beartracks.
¿Qué es RateMyTracks?
RateMyTracks es una extensión de Chrome desarrollada por RateMyTracks, y su función principal es "Get clear insights into professors at the University of Alberta while browsing Beartracks.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión RateMyTracks
Descarga archivos de extensión RateMyTracks en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
RateMyTracks helps you find the best classes to take when building a schedule on BearTracks. It does this by displaying ratings and linking reviews from Rate My Professors within Beartracks, no other setup required. Features: - Shows the Rate My Professors rating next to each professor's name - Each professor's name becomes a link to their reviews - Button to control when the extension is on - Seamlessly integrated into Beartracks, just install and go - 100% free no payment required RateMyTracks is not endorsed or sponsored by the University of Alberta or Rate My Professors. Developed in Edmonton by Youssef Ismail, Rupin Bapuji, Bennett Wiredu, and Kourosh Kehtari.
Información Básica de la Extensión
Nombre | RateMyTracks |
ID | fejbmlpffkoiinhibcojnjldfhedomfe |
URL Oficial | https://chromewebstore.google.com/detail/ratemytracks/fejbmlpffkoiinhibcojnjldfhedomfe |
Descripción | Get clear insights into professors at the University of Alberta while browsing Beartracks. |
Tamaño del Archivo | 105 KB |
Cantidad de Instalaciones | 249 |
Versión Actual | 1.1.1 |
Última Actualización | 2021-07-23 |
Fecha de Publicación | 2021-07-21 |
Desarrollador | RateMyTracks |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://forms.gle/fFzfrTCQYAqk18zS9 |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RateMyTracks", "description": "Get clear insights into professors at the University of Alberta while browsing Beartracks.", "version": "1.1.1", "manifest_version": 3, "icons": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/logo16.png", "32": "\/images\/logo32.png", "48": "\/images\/logo48.png", "128": "\/images\/logo128.png" } }, "content_scripts": [ { "matches": [ "https:\/\/www.beartracks.ualberta.ca\/*" ], "run_at": "document_end", "js": [ "main.js" ] } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "profData.json" ], "matches": [ "https:\/\/www.beartracks.ualberta.ca\/*" ] } ], "permissions": [ "storage" ] } |