CheckSchoology Lite
CheckSchoology Lite brings features from your favorite PCR extension into Schoology.
CheckSchoology Lite란 무엇입니까?
CheckSchoology Lite은(는) Bowen Yin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "CheckSchoology Lite brings features from your favorite PCR extension into Schoology."입니다.
확장 프로그램 스크린샷
CheckSchoology Lite 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Visit your Schoology calendar page to get started. Summary of features: • Mark an assignment as complete by hovering over it and clicking the checkmark. • Change course colors by clicking on "All Calendars" at the top. • Choose from new, updated colors. • Completed assignments are synced across all signed-in Chrome devices. CheckSchoology Lite is open source. View the source code at https://github.com/BowenYin/checkschoology-lite.
확장 프로그램 기본 정보
이름 | CheckSchoology Lite |
ID | pggolmnkgkclmglodmckfdckmjglpjbm |
공식 URL | https://chromewebstore.google.com/detail/checkschoology-lite/pggolmnkgkclmglodmckfdckmjglpjbm |
설명 | CheckSchoology Lite brings features from your favorite PCR extension into Schoology. |
파일 크기 | 18.93 KB |
설치 횟수 | 306 |
현재 버전 | 1.1.2 |
최근 업데이트 | 2020-09-29 |
출시 날짜 | 2020-03-19 |
평점 | 3.67/5 총 3 개의 평점 |
개발자 | Bowen Yin |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/BowenYin/checkschoology-lite |
도움말 페이지 URL | https://github.com/BowenYin/checkschoology-lite/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "CheckSchoology Lite", "version": "1.1.2", "description": "CheckSchoology Lite brings features from your favorite PCR extension into Schoology.", "manifest_version": 2, "icons": { "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "content_scripts": [ { "js": [ "content.js" ], "css": [ "content.css" ], "matches": [ "*:\/\/schoology.harker.org\/calendar\/*", "*:\/\/athena.harker.org\/calendar\/*", "*:\/\/app.schoology.com\/calendar\/*" ], "run_at": "document_start" } ], "browser_action": { "default_icon": { "32": "icons\/icon32.png" } }, "permissions": [ "storage", "webRequest", "*:\/\/schoology.harker.org\/calendar\/*", "*:\/\/athena.harker.org\/calendar\/*", "*:\/\/app.schoology.com\/calendar\/*" ], "short_name": "CheckSchoology" } |