Super Canvas

Supercharge Your Canvas LMS Experience

Super Canvasคืออะไร?

Super Canvas เป็นส่วนขยายของ Chrome ที่พัฒนาโดย firwer และคุณลักษณะหลักของมันคือ "Supercharge Your Canvas LMS Experience"

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

screenshot
screenshot
screenshot

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

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

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

                        SuperCanvas Chrome Extension For Canvas LMS

Tired of searching through files in canvas slowly and inefficiently? Or having your tasks deadline all over the place? Super Canvas is for you!

v1.2.1 New Changes:
✅ Updated preview screen (Bigger and better preview of files now!)
✅ Hover over file to view full hidden overflow text

🚀 v1.1.0 Features:
⭐️Fast File Navigation and Search
⭐️Instant Search Querying & Folder Filter
⭐️Supports Fuzzy Search Algorithm (Powered by Fuse.js)
⭐️Tasks Deadline Card Display with Countdown (Indicates number of days/hours/mins left)

More coming soon! (When I have more time :) )

How to use:
1. Install chrome extension
2. Navigate to canvas website (For your school)
3. You should see a magnifying glass icon on the dashboard cards where you can access all of your course files. For deadlines, it will display all your assignments/quizzes with due date.

In the event the search icon/deadlines cannot be seen on the dashboard page, please try refreshing the page OR disable adblock on your canvas website (If you have one)

For bug report/ideas, kindly send me a message at [email protected]! I'll love to hear from you!                    

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

ชื่อ Super Canvas Super Canvas
ID bobfbdpgdhiohdiebpklmnniaagjamdo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/super-canvas/bobfbdpgdhiohdiebpklmnniaagjamdo
คำอธิบาย Supercharge Your Canvas LMS Experience
ขนาดไฟล์ 2.78 MB
จำนวนการติดตั้ง 353
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2024-02-21
วันที่เผยแพร่ 2023-07-30
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา firwer
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Super Canvas",
    "description": "Supercharge Your Canvas LMS Experience",
    "version": "1.2.1",
    "manifest_version": 3,
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Super Canvas Extension for Canvas LMS",
        "default_icon": "icon.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "*"
            ]
        }
    ]
}