Canvas Edit Button

This extension only toggles Canvas assignment pages between edit and view modes. Designed to help improve teacher experience with…

Canvas Edit Button란 무엇입니까?

Canvas Edit Button은(는) ozarkdev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension only toggles Canvas assignment pages between edit and view modes. Designed to help improve teacher experience with…"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension only toggles Canvas assignment pages between edit and view modes. Designed to help improve teacher experience with Quizzes 2.

Privacy Policy:
This extension does not collect any user data, nor does it connect to any servers or cdns. It will not transmit any information whatsoever. This extension cannot access user information or student information in any way. The extension only interacts with the url and the save button via javascript of instructure.com assignments pages.

Usage:
The teacher must be logged in to an instructure.com account. If the user is on the instructure.com domain in assignments when the button is pressed, the url is checked for "/edit". If it's not found, javascript is used to remove GET variables and append "/edit" to the url. If it is found, javascript is used to press the "Save" button.

Changelog:
v0.2 - fine tuned url restriction for instructure.com extension will only work on canvas assignments.                    

확장 프로그램 기본 정보

이름 Canvas Edit Button Canvas Edit Button
ID jnffijdnooikfpohhnlbdbiedppbdnea
공식 URL https://chromewebstore.google.com/detail/canvas-edit-button/jnffijdnooikfpohhnlbdbiedppbdnea
설명 This extension only toggles Canvas assignment pages between edit and view modes. Designed to help improve teacher experience with…
파일 크기 50.63 KB
설치 횟수 275
현재 버전 0.2
최근 업데이트 2020-01-11
출시 날짜 2020-01-10
개발자 ozarkdev
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Edit Button",
    "version": "0.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/*\/assignments\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png"
    }
}