MadGPA
Automatically loads the previous semester's average GPA in course enroll.
Что такое MadGPA?
MadGPA - это расширение Chrome, разработанное Prath, и его основная функция - "Automatically loads the previous semester's average GPA in course enroll.".
Снимки экрана расширения
Скачать файл CRX расширения MadGPA
Скачайте файлы расширений MadGPA в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Helps you select the best & easiest courses to enroll in at the University of Wisconsin - Madison. Have you ever tried to find the easiest course offering of a certain degree requirement? This extension solves that problem! By overlaying previous semesters average GPA in course enroll, this extension removes the pain of finding a course and then checking it against a grade distribution site.
Основная информация о расширении
Название | MadGPA |
ID | ngglfcpeciojeakbdenajcljcinejjpa |
Официальный URL | https://chromewebstore.google.com/detail/madgpa/ngglfcpeciojeakbdenajcljcinejjpa |
Описание | Automatically loads the previous semester's average GPA in course enroll. |
Размер файла | 33.26 KB |
Количество установок | 285 |
Текущая Версия | 3.00 |
Последнее Обновление | 2023-02-03 |
Дата публикации | 2023-01-31 |
Рейтинг | 5.00/5 Всего 7 оценок |
Разработчик | Prath |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://pite.vercel.app/#projects |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "MadGPA", "description": "Automatically loads the previous semester's average GPA in course enroll.", "version": "3.00", "icons": { "32": "icons\/32.png", "128": "icons\/128.png" }, "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/github.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.enroll.wisc.edu\/*", "https:\/\/enroll.wisc.edu\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |