Schoology Overdue Cleaner

Clean up your screen by dismissing overdue Schoology assignments.

Что такое Schoology Overdue Cleaner?

Schoology Overdue Cleaner - это расширение Chrome, разработанное Toby Salusky, и его основная функция - "Clean up your screen by dismissing overdue Schoology assignments.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Schoology Overdue Cleaner

Скачайте файлы расширений Schoology Overdue Cleaner в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Bothered by the clutter that is unnecessary overdues on Schoology? This extension can fix that.

LICENSE
This project is open source under the MIT License. See the https://github.com/TobySalusky/OverdueCleaner/blob/main/LICENSE for more information.

DISCLAIMER
Schoology Overdue Cleaner is not affiliated with Schoology Inc. Schoology, the SCHOOLOGY® wordmark, and the S logo are registered and unregistered trademarks of Schoology, Inc. in the United States. All product names, logos, and brands are property of their respective owners.                    

Основная информация о расширении

Название Schoology Overdue Cleaner Schoology Overdue Cleaner
ID pcjacnadlmodpiibjkjbhjpokgcpblih
Официальный URL https://chromewebstore.google.com/detail/schoology-overdue-cleaner/pcjacnadlmodpiibjkjbhjpokgcpblih
Описание Clean up your screen by dismissing overdue Schoology assignments.
Размер файла 51.84 KB
Количество установок 316
Текущая Версия 1.0.0
Последнее Обновление 2021-11-22
Дата публикации 2021-11-22
Рейтинг 5.00/5 Всего 3 оценок
Разработчик Toby Salusky
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/TobySalusky/OverdueCleaner
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Schoology Overdue Cleaner",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/learn.lcps.org\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "description": "Clean up your screen by dismissing overdue Schoology assignments.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Toby Salusky",
    "permissions": [
        "storage"
    ]
}