Terp Data
Terp Data allows University of Maryland students to view their professor ratings and reviews live on Testudo course pages instead…
Qu'est-ce que Terp Data ?
Terp Data est une extension Chrome développée par TerpData, et sa fonction principale est "Terp Data allows University of Maryland students to view their professor ratings and reviews live on Testudo course pages instead…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Terp Data
Téléchargez les fichiers d'extension Terp Data au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Terp Data allows University of Maryland students to view their professor ratings and reviews live on Testudo course pages instead of having to search other sites for the reviews! If you enjoy being lazy, this is the perfect chrome extension for you!
Informations de Base sur l'Extension
Nom | Terp Data |
ID | lblmemcjbfkeemdnbpfbbihhjehcfngg |
URL Officiel | https://chromewebstore.google.com/detail/terp-data/lblmemcjbfkeemdnbpfbbihhjehcfngg |
Description | Terp Data allows University of Maryland students to view their professor ratings and reviews live on Testudo course pages instead… |
Taille du Fichier | 2.33 MB |
Nombre d'Installations | 128 |
Version Actuelle | 0.3.0 |
Dernière Mise à Jour | 2020-05-15 |
Date de Publication | 2020-05-14 |
Évaluation | 4.91/5 Total 11 Évaluations |
Développeur | TerpData |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Terp Data", "version": "0.3.0", "content_scripts": [ { "matches": [ "https:\/\/app.testudo.umd.edu\/soc\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": "terpdata.png", "default_popup": "popup\/index.html", "default_title": "Terp Data" }, "icons": { "128": "terpdata.png" }, "web_accessible_resources": [ "professor_data.json" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com https:\/\/cdnjs.cloudflare.com https:\/\/maxcdn.bootstrapcdn.com; object-src 'self'" } |