Google Drive Dark Mode

Dark mode for Google Drive!

Google Drive Dark Mode란 무엇입니까?

Google Drive Dark Mode은(는) Ivan Hidalgo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Dark mode for Google Drive!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Google Drive Dark Mode 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Dark mode for Google Drive is here!

Simply install and the extension will automatically give google drive a slick dark theme.

You can toggle the dark mode on and off by clicking on the button next to the drive logo.

1.0.4 update:
- Fix extension not working on the newest Chrome version.
- Improved visibility for the storage warning.                    

확장 프로그램 기본 정보

이름 Google Drive Dark Mode Google Drive Dark Mode
ID mhlhbpejnmlkaiaggagblklodbbldmmc
공식 URL https://chromewebstore.google.com/detail/google-drive-dark-mode/mhlhbpejnmlkaiaggagblklodbbldmmc
설명 Dark mode for Google Drive!
파일 크기 21.95 KB
설치 횟수 66,670
현재 버전 1.0.4
최근 업데이트 2024-01-21
출시 날짜 2022-11-27
평점 3.43/5 총 103 개의 평점
개발자 Ivan Hidalgo
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Drive Dark Mode",
    "version": "1.0.4",
    "description": "Dark mode for Google Drive!",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/drive.google.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/logo.png"
    },
    "action": {
        "default_icon": "images\/logo.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "main.css",
                "permanent.css",
                "images\/moon.png",
                "images\/sun.png",
                "images\/paypal.png",
                "images\/logo.png"
            ],
            "matches": [
                "https:\/\/drive.google.com\/*",
                "https:\/\/docs.google.com\/*"
            ]
        }
    ]
}