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…」です。
拡張機能のスクリーンショット
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 |
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" } } |