Schoology Overdue Cleaner

Clean up your screen by dismissing overdue Schoology assignments.

Vad är Schoology Overdue Cleaner?

Schoology Overdue Cleaner är en Chrome-tillägg utvecklad av Toby Salusky, och dess huvudfunktion är "Clean up your screen by dismissing overdue Schoology assignments.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Schoology Overdue Cleaner-förlängningens CRX-fil

Ladda ner Schoology Overdue Cleaner-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Schoology Overdue Cleaner Schoology Overdue Cleaner
ID pcjacnadlmodpiibjkjbhjpokgcpblih
Officiell webbadress https://chromewebstore.google.com/detail/schoology-overdue-cleaner/pcjacnadlmodpiibjkjbhjpokgcpblih
Beskrivning Clean up your screen by dismissing overdue Schoology assignments.
Filstorlek 51.84 KB
Antal Installationer 316
Aktuell Version 1.0.0
Senast Uppdaterad 2021-11-22
Publiceringsdatum 2021-11-22
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare Toby Salusky
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/TobySalusky/OverdueCleaner
Stödda Språk 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"
    ]
}