Google Classroom Grades Filter
A simple(r) way to filter assignments in your Google Classroom Gradebook
Google Classroom Grades Filter क्या है?
Google Classroom Grades Filter Al Caughey द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple(r) way to filter assignments in your Google Classroom Gradebook"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Classroom Grades Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
******************************************************************** *** Please upgrade to my Google Classroom Tweaks extension *** ******************************************************************** This new extension includes all of the functionality in this one plus several more features that (IMHO) that are really helpful. For more info, see https://chrome.google.com/webstore/detail/google-classroom-tweaks/ajidehkdcfndgeeejbnfeikngkidcdfm?hl=en&authuser=0 NB - I will not be posting any more updates to this extension. All new work will go into my Google Classroom Tweaks extension. ------------------------------------------------------------------------------------------------------------------------------------- This extension allows you to filter the columns in your Google Classroom Grades table - e.g., view just the tests or just the quizzes or work that was due in Dec, etc., etc, New in v0.1.5, you can 1. Removed unused Storage permission in manifest (to comply with Google requirements). Otherwise, no changes. New in v0.1.4, you can 1. specify whether to include or exclude the matching columns, and 2. enter more complex search patterns - e.g., enter `sep|oct` to match entries from `September` or `October`... use the Vertical Line (+`\`) to specify a logical `OR` In actual fact, the field supports full regular expression matching if you want to get that complex!
एक्सटेंशन की मूल जानकारी
नाम | Google Classroom Grades Filter |
ID | appdlcdpfallkkdchdeipbhpenmkegmo |
आधिकारिक URL | https://chromewebstore.google.com/detail/google-classroom-grades-f/appdlcdpfallkkdchdeipbhpenmkegmo |
विवरण | A simple(r) way to filter assignments in your Google Classroom Gradebook |
फ़ाइल का आकार | 835 KB |
स्थापना संख्या | 2,000 |
वर्तमान संस्करण | 0.1.5 |
अंतिम अपडेट | 2023-03-07 |
प्रकाशन तिथि | 2020-05-10 |
रेटिंग | 4.00/5 कुल 7 रेटिंग्स |
डेवलपर | Al Caughey |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Classroom Grades Filter", "description": "A simple(r) way to filter assignments in your Google Classroom Gradebook", "permissions": [], "manifest_version": 2, "version": "0.1.5", "author": "Al Caughey", "content_scripts": [ { "matches": [ "https:\/\/classroom.google.com\/*c\/*" ], "css": [ "css\/styles.css" ], "js": [ "js\/filter.js" ], "run_at": "document_idle", "all_frames": false } ], "browser_action": { "default_icon": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_popup": "html\/popup.html", "default_title": "Grades Filter" }, "icons": { "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "web_accessible_resources": [ "images\/*.png" ] } |