Canvas Quick Student View

Adds the Student View link to all pages in Canvas. Look for the spectacles icon at the top right.

Canvas Quick Student View란 무엇입니까?

Canvas Quick Student View은(는) Old Pike Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds the Student View link to all pages in Canvas. Look for the spectacles icon at the top right."입니다.

확장 프로그램 스크린샷

screenshot

Canvas Quick Student View 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Install to add the Student View link – visible as a "spectacles" icon – on every page at the top right (in the "crumbs" navigation pane) in the Canvas LMS. Enables quick toggling between Student View and regular view without extra navigation. 

NOTE: as of its December 19, 2020 release, Canvas implements its own built-in Student View link on most pages. This extension now is preset to become hidden on pages where the built-in link is shown, but other options can be selected (see Options page for more info).

This extension ONLY works with Canvas URLs of the following types: 

https://*.instructure.com/*
http://*.instructure.com/*
https://canvas.gu.se/*

For other URL formats, use Canvas Quick Student View (any host), link: https://chrome.google.com/webstore/detail/canvas-quick-student-view/hlhfhggndbcoolimgcohdegdfpcbphhj

Please find the complete manual at https://drive.google.com/drive/folders/1ZKHJh4_61pG4fbn743XW4qTAUCr41xaI?usp=sharing

Please join  https://groups.google.com/d/forum/canvas-quick-student-view for questions, bug reports etc.                    

확장 프로그램 기본 정보

이름 Canvas Quick Student View Canvas Quick Student View
ID idkfmdcfofomdpiflkonjlcnllkffhoh
공식 URL https://chromewebstore.google.com/detail/canvas-quick-student-view/idkfmdcfofomdpiflkonjlcnllkffhoh
설명 Adds the Student View link to all pages in Canvas. Look for the spectacles icon at the top right.
파일 크기 86.46 KB
설치 횟수 3,469
현재 버전 0.12
최근 업데이트 2022-03-16
출시 날짜 2020-02-09
평점 5.00/5 총 1 개의 평점
개발자 Old Pike Software
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://groups.google.com/d/forum/canvas-quick-student-view
개인정보 보호 정책 페이지 URL https://oldpike.bxtrom.eu/privacy_policy.html
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Canvas Quick Student View",
    "version": "0.12",
    "description": "Adds the Student View link to all pages in Canvas. Look for the spectacles icon at the top right.",
    "icons": {
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.js",
                "content.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*",
                "http:\/\/*.instructure.com\/*",
                "https:\/\/canvas.gu.se\/*"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon128.png",
                "woAuthor.png",
                "wAuthor.png"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*",
                "http:\/\/*.instructure.com\/*",
                "https:\/\/canvas.gu.se\/*"
            ]
        }
    ]
}