Google Classroom Dark Mode
Transform Google Classroom into a cooler dark version!
Google Classroom Dark Modeคืออะไร?
Google Classroom Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Zekerocks11 และคุณลักษณะหลักของมันคือ "Transform Google Classroom into a cooler dark version!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Classroom Dark Mode
ดาวน์โหลดไฟล์ส่วนขยาย Google Classroom Dark Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
V 3.5.2: Complete list of bug fixes and updates below. -More Bug Fixes - Updated so the new sidebar isn't beaching your eyes out Let me know if you see any bugs! Also, to clarify, the extension does not collect any of your data. It uses the storage function to save your selected colour mode on the extension, or if you have it disabled, so the next time you come to classroom your settings are saved and reapplied. This extension will transform your Google Classroom to a way cooler dark version. It is fully functional, but may have areas that were untouched and are being worked on currently. All the code used for the dark mode is original, therefore there will be bugs and areas that are not the correct colour, style, etc. Please let me know if there is something that is does not look visually correct.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Google Classroom Dark Mode |
ID | gkmfklmmoioijpjndhdhogcefdbfcfho |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/google-classroom-dark-mod/gkmfklmmoioijpjndhdhogcefdbfcfho |
คำอธิบาย | Transform Google Classroom into a cooler dark version! |
ขนาดไฟล์ | 20.75 KB |
จำนวนการติดตั้ง | 40,073 |
เวอร์ชันปัจจุบัน | 3.5.2 |
อัปเดตครั้งล่าสุด | 2023-08-14 |
วันที่เผยแพร่ | 2021-05-01 |
คะแนน | 4.59/5 รวมทั้งหมด 59 คะแนน |
ผู้พัฒนา | Zekerocks11 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Classroom Dark Mode", "version": "3.5.2", "description": "Transform Google Classroom into a cooler dark version!", "permissions": [ "storage" ], "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "css\/jetblack.css", "css\/googleblack.css" ], "matches": [ "https:\/\/classroom.google.com\/*" ] } ], "icons": { "128": "icon_128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/classroom.google.com\/*" ] } ] } |