UOC Notifier
UOC notifier for Google Chrome
Co to jest UOC Notifier?
UOC Notifier to rozszerzenie Chrome opracowane przez uoc-notifier, a jego główną funkcją jest „UOC notifier for Google Chrome”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia UOC Notifier
Pobierz pliki rozszerzeń UOC Notifier 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
Get the latest news and notifications on your Chrome! Based on UOChrome from Jorge Aguilera These are the amazing features! - Autologin to UOC - Get the latest notifications of what is happening in the classrooms - Check your calendar - Shorthand links to some interesting parts of the website - Get notified about PAC dates and grades!
Podstawowe informacje o rozszerzeniu
Nazwa | UOC Notifier |
ID | beiebnelcljchfoehaogncobmpelndgh |
Oficjalny URL | https://chromewebstore.google.com/detail/uoc-notifier/beiebnelcljchfoehaogncobmpelndgh |
Opis | UOC notifier for Google Chrome |
Rozmiar pliku | 298 KB |
Liczba instalacji | 1,916 |
Aktualna Wersja | 2.4.0 |
Ostatnia Aktualizacja | 2022-06-13 |
Data Publikacji | 2020-02-22 |
Ocena | 4.85/5 Łącznie 88 Oceny |
Deweloper | uoc-notifier |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/UOC-notifier/UOC-notifier-chrome |
Adres URL Strony Pomocy | https://github.com/UOC-notifier/UOC-notifier-chrome/issues |
Adres URL Strony Polityki Prywatności | https://raw.githubusercontent.com/UOC-notifier/UOC-notifier-chrome/master/privacidad.md |
Obsługiwane Języki | en,ca,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "browser_action": { "default_icon": "img\/logo128.png", "default_popup": "popup.html" }, "background": { "page": "background.html", "persistent": false }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "description": "__MSG_DESCRIPTION__", "icons": { "16": "img\/logo16.png", "32": "img\/logo32.png", "64": "img\/logo64.png", "128": "img\/logo128.png" }, "default_locale": "en", "manifest_version": 2, "name": "__MSG_TITLE__", "options_page": "options.html", "permissions": [ "*:\/\/*.uoc.edu\/*", "alarms", "idle", "cookies" ], "version": "2.4.0", "content_scripts": [ { "all_frames": true, "run_at": "document_end", "matches": [ "*:\/\/*.uoc.edu\/*" ], "css": [ "theme\/styles.css" ], "js": [ "theme\/uoctheme.js" ] } ] } |