UAlberta - Engineering Chart Augmenter
This extension provides course descriptions when you hover over a course on course1.html or course2.html.
Co to jest UAlberta - Engineering Chart Augmenter?
UAlberta - Engineering Chart Augmenter to rozszerzenie Chrome opracowane przez Motiejus Osipovas, a jego główną funkcją jest „This extension provides course descriptions when you hover over a course on course1.html or course2.html.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia UAlberta - Engineering Chart Augmenter
Pobierz pliki rozszerzeń UAlberta - Engineering Chart Augmenter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | UAlberta - Engineering Chart Augmenter |
ID | gcplnjdpndjnnpibobbjkjakjafelbne |
Oficjalny URL | https://chromewebstore.google.com/detail/ualberta-engineering-char/gcplnjdpndjnnpibobbjkjakjafelbne |
Opis | This extension provides course descriptions when you hover over a course on course1.html or course2.html. |
Rozmiar pliku | 81.5 KB |
Liczba instalacji | 59 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2016-01-14 |
Data Publikacji | 2016-01-14 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Motiejus Osipovas |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |