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文件

下載Canvas Edit Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}