OSCAR+
OSCAR+ improves the look and feel of Georgia Tech's OSCAR.
Что такое OSCAR+?
OSCAR+ - это расширение Chrome, разработанное Henry LE BERRE, и его основная функция - "OSCAR+ improves the look and feel of Georgia Tech's OSCAR.".
Снимки экрана расширения
Скачать файл CRX расширения OSCAR+
Скачайте файлы расширений OSCAR+ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Enhances the user interface of Georgia Tech's OSCAR. Our mission statement: "Making Georgia Tech's class registration system as beautiful as its payment gateway."
Основная информация о расширении
Название | OSCAR+ |
ID | fcjdbonkjmoampkihabopmahicdimcee |
Официальный URL | https://chromewebstore.google.com/detail/oscar+/fcjdbonkjmoampkihabopmahicdimcee |
Описание | OSCAR+ improves the look and feel of Georgia Tech's OSCAR. |
Размер файла | 32.94 KB |
Количество установок | 39 |
Текущая Версия | 2.1 |
Последнее Обновление | 2021-10-07 |
Дата публикации | 2021-07-14 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Henry LE BERRE |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/henryleberre/GT-UI |
URL страницы помощи | https://github.com/henryleberre/GT-UI/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "web_accessible_resources": [ { "matches": [ "https:\/\/oscar.gatech.edu\/*" ], "resources": [ "main\/index.html", "main\/gt-logo.svg", "main\/github-logo.svg" ] } ], "name": "OSCAR+", "version": "2.1", "description": "OSCAR+ improves the look and feel of Georgia Tech's OSCAR.", "permissions": [ "storage" ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/oscar.gatech.edu\/*" ], "css": [ "main\/tailwind.min.css" ], "js": [ "main\/index.js" ] } ], "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "64": "icons\/icon64.png", "128": "icons\/icon128.png" }, "default_title": "OSCAR+", "default_popup": "popup\/index.html" } } |