Google Docs Dark Mode (Darker)
Google docs for someone who can't stand the light.
Google Docs Dark Mode (Darker)란 무엇입니까?
Google Docs Dark Mode (Darker)은(는) PrefersDarkMode에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Google docs for someone who can't stand the light."입니다.
확장 프로그램 스크린샷
Google Docs Dark Mode (Darker) 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Simply applies a overtly dark theme to google docs. Perfect for those who prefer a pitch black dark mode in google docs. Absolutely ZERO user data is collected. Source code: https://github.com/R-Y-M-R/DocsDarkMode
확장 프로그램 기본 정보
이름 | Google Docs Dark Mode (Darker) |
ID | eeckpnpnbjmpknpcmcoiceaidlajhpmh |
공식 URL | https://chromewebstore.google.com/detail/google-docs-dark-mode-dar/eeckpnpnbjmpknpcmcoiceaidlajhpmh |
설명 | Google docs for someone who can't stand the light. |
파일 크기 | 39.38 KB |
설치 횟수 | 361 |
현재 버전 | 1 |
최근 업데이트 | 2022-09-07 |
출시 날짜 | 2022-09-04 |
평점 | 3.00/5 총 2 개의 평점 |
개발자 | PrefersDarkMode |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Docs Dark Mode (Darker)", "version": "1", "description": "Google docs for someone who can't stand the light.", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "128.png" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "css\/dark_mode_docs.css" ], "matches": [ "https:\/\/docs.google.com\/*" ] } ] } |