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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ozarkdev และคุณลักษณะหลักของมันคือ "This extension only toggles Canvas assignment pages between edit and view modes. Designed to help improve teacher experience with…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Canvas Edit Button
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |