Canvas To Do List

Adds the To Do list from the mobile Canvas app to the side of the Canvas homepage.

Canvas To Do Listคืออะไร?

Canvas To Do List เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pikapower9080 และคุณลักษณะหลักของมันคือ "Adds the To Do list from the mobile Canvas app to the side of the Canvas homepage."

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Canvas To Do List

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

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

                        Adds the To Do List from the Canvas mobile app to the web app, and has a neat popup with quick access to grades, announcements, inbox, and to-do items.

Note: Every school's Canvas instance is a little different. If you don't have the Important Dates sidebar normally, this extension will only partly work. It will still function via the popup but the list won't show up on your home page.

Click an assignment to open a preview window, or right click it to go straight to it's page. Assignments due today will show up in orange and missing assignments will show up in red.                    

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

ชื่อ Canvas To Do List Canvas To Do List
ID jelbgncjaecogiccpfojlbldbgfmkgae
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/canvas-to-do-list/jelbgncjaecogiccpfojlbldbgfmkgae
คำอธิบาย Adds the To Do list from the mobile Canvas app to the side of the Canvas homepage.
ขนาดไฟล์ 31.22 KB
จำนวนการติดตั้ง 43
เวอร์ชันปัจจุบัน 1.2.0
อัปเดตครั้งล่าสุด 2023-10-31
วันที่เผยแพร่ 2023-09-11
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา pikapower9080
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "action": {
        "default_popup": "popup.html",
        "default_title": "Canvas To Do"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "main.css"
            ],
            "js": [
                "todo.js"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ]
        }
    ],
    "description": "Adds the To Do list from the mobile Canvas app to the side of the Canvas homepage.",
    "icons": {
        "128": "icons\/128.png",
        "32": "icons\/32.png",
        "512": "icons\/512.png",
        "72": "icons\/72.png"
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAh8GPi8KrlGFhJKJ4fOcApS1h6FgaE\/cyK9I82VUWoyKbxNlmK2jfnTpDgY28UjyXtD\/czWZLcbi88LsCGizRFjzFzCDOCGOi2BifGdrVpgXt9x1EY9itDWgtr7ZBsllv+oJ8VaMr1q5X6UO2+\/3kxYYDt0QZErVaTILuokJYee3Tf5uxmEEX+7+9f3bH9UAdOx+iRzSLDeC9G5wkg+WM3jL0VDb6idswB4zRQO8Ryi+W4pOCj1g+A9WCARyUHXOnkj6sa8+JTT24\/4aiOv2iFTkx75gCDNfDZuL\/rVWiKKMqq+qfHkA6iYuRtt6hzkEg0X5CRtQigN16ybx9vALrmwIDAQAB",
    "manifest_version": 3,
    "name": "Canvas To Do List",
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "alarms"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.2.0"
}