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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Canvas Answer Scratcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } ] } |