Improved To Do Page For Google Classroom™
Mark you assignments as done without having to open them
Improved To Do Page For Google Classroom™คืออะไร?
Improved To Do Page For Google Classroom™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Digitally และคุณลักษณะหลักของมันคือ "Mark you assignments as done without having to open them"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Improved To Do Page For Google Classroom™
ดาวน์โหลดไฟล์ส่วนขยาย Improved To Do Page For Google Classroom™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds a mark as done button to the to do menu in Google Classroom™, you can use this to mark tasks as done without having to load them up. This is super useful for speeding up your workflow and helping you focus on what is important.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lbeomecdcepneegoljjemmlkfpbfjokh |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/improved-to-do-page-for-g/lbeomecdcepneegoljjemmlkfpbfjokh |
คำอธิบาย | Mark you assignments as done without having to open them |
ขนาดไฟล์ | 47.48 KB |
จำนวนการติดตั้ง | 2,130 |
เวอร์ชันปัจจุบัน | 3.21 |
อัปเดตครั้งล่าสุด | 2019-01-15 |
วันที่เผยแพร่ | 2019-01-15 |
คะแนน | 4.83/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | Digitally |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Improved To Do Page For Google Classroom\u2122", "short_name": "Improved To Do Page For Google Classroom\u2122", "description": "Mark you assignments as done without having to open them", "version": "3.21", "browser_action": { "default_icon": "images\/icon96.png" }, "icons": { "32": "images\/icon32.png", "36": "images\/icon36.png", "48": "images\/icon48.png", "64": "images\/icon64.png", "96": "images\/icon96.png" }, "content_scripts": [ { "matches": [ "https:\/\/classroom.google.com\/*" ], "js": [ "libraries\/jquery\/jquery-3.2.1.min.js", "scripts\/addMarkAsDoneButtons.js" ], "css": [ "html\/customStyles.css" ] }, { "matches": [ "https:\/\/classroom.google.com\/*\/a\/*\/details" ], "js": [ "libraries\/jquery\/jquery-3.2.1.min.js", "scripts\/markAsDone.js" ], "all_frames": true } ], "permissions": [ "https:\/\/classroom.google.com\/*" ], "web_accessible_resources": [ "html\/markAsDoneButton.html" ] } |