Schoology Overdue Cleaner
Clean up your screen by dismissing overdue Schoology assignments.
Cos'è Schoology Overdue Cleaner?
Schoology Overdue Cleaner è un'estensione di Chrome sviluppata da Toby Salusky, e la sua funzione principale è "Clean up your screen by dismissing overdue Schoology assignments.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Schoology Overdue Cleaner
Scarica i file di estensione Schoology Overdue Cleaner in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Schoology Overdue Cleaner |
ID | pcjacnadlmodpiibjkjbhjpokgcpblih |
URL Ufficiale | https://chromewebstore.google.com/detail/schoology-overdue-cleaner/pcjacnadlmodpiibjkjbhjpokgcpblih |
Descrizione | Clean up your screen by dismissing overdue Schoology assignments. |
Dimensione del File | 51.84 KB |
Conteggio Installazioni | 316 |
Versione Corrente | 1.0.0 |
Ultimo Aggiornamento | 2021-11-22 |
Data di Pubblicazione | 2021-11-22 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Toby Salusky |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/TobySalusky/OverdueCleaner |
Lingue Supportate | 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" ] } |