Canvas Answer Scratcher
Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.
Qu'est-ce que Canvas Answer Scratcher ?
Canvas Answer Scratcher est une extension Chrome développée par abbasr723868, et sa fonction principale est "Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Canvas Answer Scratcher
Téléchargez les fichiers d'extension Canvas Answer Scratcher 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 will edit HTML inside a specific page students see inside a quiz page. It will allow the students to scratch out specific answers which helps the students decide which answer is correct. This functionality does not currently exist in Canvas itself.
Informations de Base sur l'Extension
Nom | Canvas Answer Scratcher |
ID | hiokkipjpomgippmpjbnkjdpgbacbgfk |
URL Officiel | https://chromewebstore.google.com/detail/canvas-answer-scratcher/hiokkipjpomgippmpjbnkjdpgbacbgfk |
Description | Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend. |
Taille du Fichier | 482 KB |
Nombre d'Installations | 404 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2021-09-20 |
Date de Publication | 2021-09-19 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | abbasr723868 |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Canvas Answer Scratcher", "author": "Rasool Abbas", "version": "1.0", "manifest_version": 2, "description": "Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.", "icons": { "256": "images\/icon.png" }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/*" ], "js": [ "scripts\/main.js" ] } ] } |