Quizlet++
Extension that modifies Quizlet for more "features".
Что такое Quizlet++?
Quizlet++ - это расширение Chrome, разработанное https://tigertjj.com, и его основная функция - "Extension that modifies Quizlet for more "features".".
Снимки экрана расширения
Скачать файл CRX расширения Quizlet++
Скачайте файлы расширений Quizlet++ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Imagine working on a Quizlet. Now, imagine that it was too easy. Like, really easy. That could be you. Do your work in no time, while at the same time, look like you're doing work, with even the nosiest teachers looking down your shoulder. Get Quizlet++ today. Currently supports: Learn Mode Write Mode Match Mode - Highlights correct answers on hover for multiple choice and match - Types correct answer for written questions
Основная информация о расширении
Название | Quizlet++ |
ID | ikpjogookicblaeiilbdjmgbdjkhpjjg |
Официальный URL | https://chromewebstore.google.com/detail/quizlet++/ikpjogookicblaeiilbdjmgbdjkhpjjg |
Описание | Extension that modifies Quizlet for more "features". |
Размер файла | 55.48 KB |
Количество установок | 4,159 |
Текущая Версия | Beta Build 7 |
Последнее Обновление | 2023-12-27 |
Дата публикации | 2020-09-16 |
Рейтинг | 3.54/5 Всего 13 оценок |
Разработчик | https://tigertjj.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://tigertjj.com/portfolio/quizletpp/ |
URL страницы помощи | https://tigertjj.com/portfolio/quizletpp/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quizlet++", "manifest_version": 3, "description": "Extension that modifies Quizlet for more \"features\".", "icons": { "16": "16x16.png", "48": "48x48.png", "128": "128x128.png" }, "short_name": "Q++", "version": "1.7.0", "version_name": "Beta Build 7", "content_scripts": [ { "matches": [ "https:\/\/quizlet.com\/*\/learn*" ], "js": [ "jquery_3.4.1_slim_min.js", "learn-inject1.js", "combined.js" ] }, { "matches": [ "https:\/\/quizlet.com\/*\/write*" ], "js": [ "jquery_3.4.1_slim_min.js", "write-inject1.js", "write.js" ] }, { "matches": [ "https:\/\/quizlet.com\/*\/match*" ], "js": [ "jquery_3.4.1_slim_min.js", "match-inject1.js", "match.js" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/quizlet.com\/*" ], "resources": [ "learn-inject2.js", "write-inject2.js", "match-inject2.js" ] } ] } |