Google Classroom Dark Mode
Transform Google Classroom into a cooler dark version!
Google Classroom Dark Mode란 무엇입니까?
Google Classroom Dark Mode은(는) Zekerocks11에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Transform Google Classroom into a cooler dark version!"입니다.
확장 프로그램 스크린샷
Google Classroom Dark Mode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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\/*" ] } ] } |