Classroom Plus
Create your own assignments on Google Classroom.
Classroom Plusคืออะไร?
Classroom Plus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sidr และคุณลักษณะหลักของมันคือ "Create your own assignments on Google Classroom."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Classroom Plus
ดาวน์โหลดไฟล์ส่วนขยาย Classroom Plus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Classroom Plus is any student's dream. Having six different to-do lists can get annoying, and having all your stuff in the same place can make things a whole lot easier. Classroom Plus makes this possible by turning your Google Classroom to-do page into a personalized to-do list. To add an assignment, simply click the extension icon in the top right-hand corner of the window, enter in a title and a due date, and click "Create assignment." Reload the page, and your assignment will be rendered seamlessly onto the page. Assignments do not expire after due dates, and you can clear your assignments at any time. Version 2.4.3 - minor bug fixes
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Classroom Plus |
ID | hblfkbdoflbakoblaknbjjhjbgfoofog |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/classroom-plus/hblfkbdoflbakoblaknbjjhjbgfoofog |
คำอธิบาย | Create your own assignments on Google Classroom. |
ขนาดไฟล์ | 78.15 KB |
จำนวนการติดตั้ง | 50,000 |
เวอร์ชันปัจจุบัน | 2.4.4 |
อัปเดตครั้งล่าสุด | 2021-03-15 |
วันที่เผยแพร่ | 2018-02-26 |
คะแนน | 3.81/5 รวมทั้งหมด 26 คะแนน |
ผู้พัฒนา | Sidr |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.sidr.io/apps |
URL หน้าช่วยเหลือ | https://help.sidr.io/en/articles/5021569-welcome-to-classroom-plus |
URL หน้านโยบายความเป็นส่วนตัว | https://www.sidr.io/privacy |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Classroom Plus", "short_name": "Classroom+", "description": "Create your own assignments on Google Classroom.", "version": "2.4.4", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "16": "assets\/image\/icon16.png", "19": "assets\/image\/icon19.png", "48": "assets\/image\/icon48.png", "128": "assets\/image\/icon128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/classroom.google.com\/*\/not-turned-in\/all" ], "js": [ "display.js" ], "run_at": "document_end" } ], "permissions": [ "tabs", "storage" ] } |