Improved To Do Page For Google Classroom™
Mark you assignments as done without having to open them
Qu'est-ce que Improved To Do Page For Google Classroom™ ?
Improved To Do Page For Google Classroom™ est une extension Chrome développée par Digitally, et sa fonction principale est "Mark you assignments as done without having to open them".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Improved To Do Page For Google Classroom™
Téléchargez les fichiers d'extension Improved To Do Page For Google Classroom™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | lbeomecdcepneegoljjemmlkfpbfjokh |
URL Officiel | https://chrome.google.com/webstore/detail/improved-to-do-page-for-g/lbeomecdcepneegoljjemmlkfpbfjokh |
Description | Mark you assignments as done without having to open them |
Taille du Fichier | 47.48 KB |
Nombre d'Installations | 2,130 |
Version Actuelle | 3.21 |
Dernière Mise à Jour | 2019-01-15 |
Date de Publication | 2019-01-15 |
Évaluation | 4.83/5 Total 6 Évaluations |
Développeur | Digitally |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |