Canvas Answer Scratcher
Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.
O que é Canvas Answer Scratcher?
Canvas Answer Scratcher é uma extensão do Chrome desenvolvida por abbasr723868, e sua principal característica é "Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Canvas Answer Scratcher
Baixe arquivos de extensão Canvas Answer Scratcher no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Canvas Answer Scratcher |
ID | hiokkipjpomgippmpjbnkjdpgbacbgfk |
URL Oficial | https://chromewebstore.google.com/detail/canvas-answer-scratcher/hiokkipjpomgippmpjbnkjdpgbacbgfk |
Descrição | Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend. |
Tamanho do Arquivo | 482 KB |
Contagem de Instalações | 404 |
Versão Atual | 1.0 |
Última Atualização | 2021-09-20 |
Data de Publicação | 2021-09-19 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | abbasr723868 |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |