Access++
Adds 5 tools to Iowa State’s Access Plus: Meal counter, Schedule while registering, Rate My Professor, export classes, export emails
Co to jest Access++?
Access++ to rozszerzenie Chrome opracowane przez A++, a jego główną funkcją jest „Adds 5 tools to Iowa State’s Access Plus: Meal counter, Schedule while registering, Rate My Professor, export classes, export emails”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Access++
Pobierz pliki rozszerzeń Access++ 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
Access Plus Plus is A suite of improvements to Iowa State's Access Plus. This extension adds four major pieces of functionality: •Rate My Professor integration on the schedule page. •See your schedule update in real-time on the registration page as you add and remove classes •Track how many meals you are above or below budget on a daily, weekly, or monthly basis •Export your calendar to .ics (compatible with Google Calendar, Outlook, iCal, and most calendar application) with just one click.
Podstawowe informacje o rozszerzeniu
Nazwa | Access++ |
ID | cdchknkpbdccmalfabhdjjkckajhbdif |
Oficjalny URL | https://chromewebstore.google.com/detail/access++/cdchknkpbdccmalfabhdjjkckajhbdif |
Opis | Adds 5 tools to Iowa State’s Access Plus: Meal counter, Schedule while registering, Rate My Professor, export classes, export emails |
Rozmiar pliku | 231 KB |
Liczba instalacji | 32 |
Aktualna Wersja | 2.0.0.0 |
Ostatnia Aktualizacja | 2016-02-20 |
Data Publikacji | 2016-02-20 |
Ocena | 5.00/5 Łącznie 6 Oceny |
Deweloper | A++ |
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": "Access++", "description": "Adds 5 tools to Iowa State\u2019s Access Plus: Meal counter, Schedule while registering, Rate My Professor, export classes, export emails", "version": "2.0.0.0", "permissions": [ "activeTab", "tabs", "alarms", "notifications", "https:\/\/accessplus.iastate.edu\/*", "webNavigation" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/accessplus.iastate.edu\/*" ], "js": [ "jquery.min.js", "ClassScheduleFunctions\/dependencies.js", "ClassScheduleFunctions\/classSchedFunc.js" ] }, { "matches": [ "https:\/\/accessplus.iastate.edu\/servlet\/adp.A_Plus" ], "js": [ "jquery.min.js", "ClassScheduleFunctions\/dependencies.js", "MealCounter\/meals.js", "emailExport.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/accessplus.iastate.edu\/RH05\/*" ], "js": [ "jquery.min.js", "emailExport.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/accessplus.iastate.edu\/*" ], "js": [ "jquery.min.js", "Registration\/registration.js" ], "run_at": "document_end" } ] } |