CheckSchoology Lite

CheckSchoology Lite brings features from your favorite PCR extension into Schoology.

CheckSchoology Lite là gì?

CheckSchoology Lite là một tiện ích mở rộng Chrome được phát triển bởi Bowen Yin, và tính năng chính của nó là "CheckSchoology Lite brings features from your favorite PCR extension into Schoology.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CheckSchoology Lite

Tải xuống các tệp mở rộng CheckSchoology Lite dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CheckSchoology Lite CheckSchoology Lite
ID pggolmnkgkclmglodmckfdckmjglpjbm
URL Chính Thức https://chromewebstore.google.com/detail/checkschoology-lite/pggolmnkgkclmglodmckfdckmjglpjbm
Mô tả CheckSchoology Lite brings features from your favorite PCR extension into Schoology.
Kích Thước Tệp 18.93 KB
Số Lần Cài Đặt 306
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2020-09-29
Ngày Phát Hành 2020-03-19
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Bowen Yin
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/BowenYin/checkschoology-lite
URL Trang Trợ Giúp https://github.com/BowenYin/checkschoology-lite/issues
Ngôn Ngữ Được Hỗ Trợ 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"
}