Schoology Overdue Cleaner

Clean up your screen by dismissing overdue Schoology assignments.

Schoology Overdue Cleanerคืออะไร?

Schoology Overdue Cleaner เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Toby Salusky และคุณลักษณะหลักของมันคือ "Clean up your screen by dismissing overdue Schoology assignments."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Schoology Overdue Cleaner

ดาวน์โหลดไฟล์ส่วนขยาย Schoology Overdue Cleaner ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Bothered by the clutter that is unnecessary overdues on Schoology? This extension can fix that.

LICENSE
This project is open source under the MIT License. See the https://github.com/TobySalusky/OverdueCleaner/blob/main/LICENSE for more information.

DISCLAIMER
Schoology Overdue Cleaner is not affiliated with Schoology Inc. Schoology, the SCHOOLOGY® wordmark, and the S logo are registered and unregistered trademarks of Schoology, Inc. in the United States. All product names, logos, and brands are property of their respective owners.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Schoology Overdue Cleaner Schoology Overdue Cleaner
ID pcjacnadlmodpiibjkjbhjpokgcpblih
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/schoology-overdue-cleaner/pcjacnadlmodpiibjkjbhjpokgcpblih
คำอธิบาย Clean up your screen by dismissing overdue Schoology assignments.
ขนาดไฟล์ 51.84 KB
จำนวนการติดตั้ง 316
เวอร์ชันปัจจุบัน 1.0.0
อัปเดตครั้งล่าสุด 2021-11-22
วันที่เผยแพร่ 2021-11-22
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Toby Salusky
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/TobySalusky/OverdueCleaner
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Schoology Overdue Cleaner",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/learn.lcps.org\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "description": "Clean up your screen by dismissing overdue Schoology assignments.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Toby Salusky",
    "permissions": [
        "storage"
    ]
}