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ファイルをダウンロード
CheckSchoology Lite拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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" } |