Canvas Answer Scratcher
Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.
什么是Canvas Answer Scratcher?
Canvas Answer Scratcher是由abbasr723868开发的Chrome扩展程序,该扩展的主要功能是“Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.”。
扩展截图
下载Canvas Answer Scratcher扩展crx文件
下载Canvas Answer Scratcher扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Canvas Answer Scratcher |
ID | hiokkipjpomgippmpjbnkjdpgbacbgfk |
官方URL | https://chromewebstore.google.com/detail/canvas-answer-scratcher/hiokkipjpomgippmpjbnkjdpgbacbgfk |
简介 | Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend. |
文件大小 | 482 KB |
安装次数 | 404 |
当前版本 | 1.0 |
更新时间 | 2021-09-20 |
上架时间 | 2021-09-19 |
评分 | 5.00/5 共1次评分 |
开发者 | abbasr723868 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } ] } |