UAlberta - Engineering Chart Augmenter
This extension provides course descriptions when you hover over a course on course1.html or course2.html.
Cos'è UAlberta - Engineering Chart Augmenter?
UAlberta - Engineering Chart Augmenter è un'estensione di Chrome sviluppata da Motiejus Osipovas, e la sua funzione principale è "This extension provides course descriptions when you hover over a course on course1.html or course2.html.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione UAlberta - Engineering Chart Augmenter
Scarica i file di estensione UAlberta - Engineering Chart Augmenter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Are you an Engineering Student at the University of Alberta? Have you ever visited one of these pages: http://www.registrar.ualberta.ca/calendar/Undergrad/Engineering/chart1.html or http://www.registrar.ualberta.ca/calendar/Undergrad/Engineering/chart2.html Ever wondered what all those courses were about? Wonder no longer! When this extension is installed a title and description will appear when you hover on a course. New in Version 1.0.1 + Added Titles + Added Descriptions for Older Courses + Added support for charts for the following Academic Years (2010-2011, 2011-2012, 2012-2013) + Now using minified Javascript and CSS (smaller extension size) New in Version 1.0.2 + Added new courses: MEC E 485, PHYSL 210A and PHYSL 210B + Added Support for charts for 2014-2015 + Course titles are now bold + No more 'undefined' tooltips when hovering on Terms New in Version 1.03 (Jan 14 2016) + Added support for HTTPS chart pages Please Rate & Review. Feel free to suggest features. Send harsh and scathing feedback if you find a problem with this extension.
Informazioni di Base sull'Estensione
Nome | UAlberta - Engineering Chart Augmenter |
ID | gcplnjdpndjnnpibobbjkjakjafelbne |
URL Ufficiale | https://chromewebstore.google.com/detail/ualberta-engineering-char/gcplnjdpndjnnpibobbjkjakjafelbne |
Descrizione | This extension provides course descriptions when you hover over a course on course1.html or course2.html. |
Dimensione del File | 81.5 KB |
Conteggio Installazioni | 59 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2016-01-14 |
Data di Pubblicazione | 2016-01-14 |
Valutazione | 5.00/5 Totale 4 Valutazioni |
Sviluppatore | Motiejus Osipovas |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "UAlberta - Engineering Chart Augmenter", "short_name": "UAECA", "description": "This extension provides course descriptions when you hover over a course on course1.html or course2.html.", "version": "1.0.3", "permissions": [ "*:\/\/www.registrar.ualberta.ca\/calendar\/Undergrad\/Engineering\/chart1.html", "*:\/\/www.registrar.ualberta.ca\/calendar\/Undergrad\/Engineering\/chart1.html" ], "content_scripts": [ { "matches": [ "*:\/\/www.registrar.ualberta.ca\/calendar\/Undergrad\/Engineering\/*" ], "js": [ "jquery-2.0.3.min.js", "myscript.js", "jquery-ui-1.10.3.custom.min.js" ], "css": [ "jquery-ui-1.10.3.custom.min.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "*.txt" ] } |