Canvas Betterizer

Quality-of-life improvements for Canvas by Instructure

Canvas Betterizer란 무엇입니까?

Canvas Betterizer은(는) Rob Noorda에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quality-of-life improvements for Canvas by Instructure"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Canvas Betterizer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        If you're a teach spending time grading and working in Canvas, you know how much time it can take! Canvas Betterizer is meant to make your time spent in Canvas by Instructure more efficient by adding small quality-of-life improvements, especially in SpeedGrader:
-Automatically focuses and selects the student grade
-Hit enter to submit grade and move on to the next student
-Save comments that you type often and pull them from a dropdown box to make grading even faster!
-Hit enter when typing a comment to submit it

Outside of Speedgrader:
-Remove those pesky tooltips that show up in the gradebook and cover up assignment scores
-Smallify your messages to make your inbox more accessible

Canvas Betterizer collects no information about you or your students. Privacy policy found at http://robertnoorda.com/portfolio/canvas-betterizer/#privacy                    

확장 프로그램 기본 정보

이름 Canvas Betterizer Canvas Betterizer
ID pndigbfohhechaafblmjdicbbahgigfg
공식 URL https://chromewebstore.google.com/detail/canvas-betterizer/pndigbfohhechaafblmjdicbbahgigfg
설명 Quality-of-life improvements for Canvas by Instructure
파일 크기 26.88 KB
설치 횟수 12,129
현재 버전 0.0.0.2
최근 업데이트 2021-02-14
출시 날짜 2018-10-29
평점 4.00/5 총 6 개의 평점
개발자 Rob Noorda
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://robertnoorda.com/portfolio/canvas-betterizer/
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Betterizer",
    "short_name": "Betterizer",
    "description": "Quality-of-life improvements for Canvas by Instructure",
    "version": "0.0.0.2",
    "browser_action": {
        "default_icon": "static\/images\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/conversations*"
            ],
            "js": [
                "js\/inbox.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/*\/speed_grader*"
            ],
            "js": [
                "js\/speedgrader.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.learn.vccs.edu\/conversations*"
            ],
            "js": [
                "js\/inbox.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.learn.vccs.edu\/*\/speed_grader*"
            ],
            "js": [
                "js\/speedgrader.js"
            ]
        }
    ],
    "icons": {
        "16": "static\/images\/icon16.png",
        "32": "static\/images\/icon32.png",
        "48": "static\/images\/icon48.png",
        "64": "static\/images\/icon64.png",
        "128": "static\/images\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}