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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |