Blackboard Grade Calculator
Helps tallying grades on blackboard
Blackboard Grade Calculator क्या है?
Blackboard Grade Calculator bcigdemoglu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps tallying grades on blackboard"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Blackboard Grade Calculator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
SUMMARY: Tallies grades in "Comments & Markups" section that has the format: "x/y [ grader explanation text here or empty ]" (e.g: "1/10 -9 No work shown", where x=1 and y=10 for this specific grading.) Displays the tallied grades by modifying the "Comments & Markups" header as "Comments & Markups [sum(x)/sum(y)]" --- BE CAREFUL! Best practice is to define the score ratio at beginning of a comment. For annotations that do not contain a grading, but a ratio as an explanation to a question must be observed carefully, since they would be calculated as well. --- USAGE: Simply download and install the extension to automatically view the sum ratio in the header. Click on "Comments & Markups [sum(x)/sum(y)]" header or the "A+" icon on top-right of the chrome screen (as shown in the first screenshot) to view grader distribution (as shown in the second screenshot.) CREDITS: Thanks to Qiuyin Ren and Syed Hossain for the idea.
एक्सटेंशन की मूल जानकारी
नाम | Blackboard Grade Calculator |
ID | idhajmemlipfeknjppgacbkkbagpgkmm |
आधिकारिक URL | https://chromewebstore.google.com/detail/blackboard-grade-calculat/idhajmemlipfeknjppgacbkkbagpgkmm |
विवरण | Helps tallying grades on blackboard |
फ़ाइल का आकार | 1.02 MB |
स्थापना संख्या | 72 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2017-02-17 |
प्रकाशन तिथि | 2017-02-16 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | bcigdemoglu |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "name": "Blackboard Grade Calculator", "description": "Helps tallying grades on blackboard", "version": "1.4", "manifest_version": 2, "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/crocodoc.com\/view\/*" ], "all_frames": true } ], "background": { "scripts": [ "bg.js" ] }, "browser_action": { "default_icon": "icon128.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |