Improved To Do Page For Google Classroom™
Mark you assignments as done without having to open them
Что такое Improved To Do Page For Google Classroom™?
Improved To Do Page For Google Classroom™ - это расширение Chrome, разработанное Digitally, и его основная функция - "Mark you assignments as done without having to open them".
Снимки экрана расширения
Скачать файл CRX расширения Improved To Do Page For Google Classroom™
Скачайте файлы расширений Improved To Do Page For Google Classroom™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension adds a mark as done button to the to do menu in Google Classroom™, you can use this to mark tasks as done without having to load them up. This is super useful for speeding up your workflow and helping you focus on what is important.
Основная информация о расширении
Название | |
ID | lbeomecdcepneegoljjemmlkfpbfjokh |
Официальный URL | https://chrome.google.com/webstore/detail/improved-to-do-page-for-g/lbeomecdcepneegoljjemmlkfpbfjokh |
Описание | Mark you assignments as done without having to open them |
Размер файла | 47.48 KB |
Количество установок | 2,130 |
Текущая Версия | 3.21 |
Последнее Обновление | 2019-01-15 |
Дата публикации | 2019-01-15 |
Рейтинг | 4.83/5 Всего 6 оценок |
Разработчик | Digitally |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Improved To Do Page For Google Classroom\u2122", "short_name": "Improved To Do Page For Google Classroom\u2122", "description": "Mark you assignments as done without having to open them", "version": "3.21", "browser_action": { "default_icon": "images\/icon96.png" }, "icons": { "32": "images\/icon32.png", "36": "images\/icon36.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "96": "images\/icon96.png" }, "content_scripts": [ { "matches": [ "https:\/\/classroom.google.com\/*" ], "js": [ "libraries\/jquery\/jquery-3.2.1.min.js", "scripts\/addMarkAsDoneButtons.js" ], "css": [ "html\/customStyles.css" ] }, { "matches": [ "https:\/\/classroom.google.com\/*\/a\/*\/details" ], "js": [ "libraries\/jquery\/jquery-3.2.1.min.js", "scripts\/markAsDone.js" ], "all_frames": true } ], "permissions": [ "https:\/\/classroom.google.com\/*" ], "web_accessible_resources": [ "html\/markAsDoneButton.html" ] } |