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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple(r) way to filter assignments in your Google Classroom Gradebook"입니다.
확장 프로그램 스크린샷
Google Classroom Grades Filter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } |