Improved To Do Page For Google Classroom™
Mark you assignments as done without having to open them
Cos'è Improved To Do Page For Google Classroom™?
Improved To Do Page For Google Classroom™ è un'estensione di Chrome sviluppata da Digitally, e la sua funzione principale è "Mark you assignments as done without having to open them".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Improved To Do Page For Google Classroom™
Scarica i file di estensione Improved To Do Page For Google Classroom™ 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
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.
Informazioni di Base sull'Estensione
Nome | |
ID | lbeomecdcepneegoljjemmlkfpbfjokh |
URL Ufficiale | https://chrome.google.com/webstore/detail/improved-to-do-page-for-g/lbeomecdcepneegoljjemmlkfpbfjokh |
Descrizione | Mark you assignments as done without having to open them |
Dimensione del File | 47.48 KB |
Conteggio Installazioni | 2,130 |
Versione Corrente | 3.21 |
Ultimo Aggiornamento | 2019-01-15 |
Data di Pubblicazione | 2019-01-15 |
Valutazione | 4.83/5 Totale 6 Valutazioni |
Sviluppatore | Digitally |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |