Google Drive Dark Mode

Dark mode for Google Drive!

Google Drive Dark Modeคืออะไร?

Google Drive Dark Mode เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ivan Hidalgo และคุณลักษณะหลักของมันคือ "Dark mode for Google Drive!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Drive Dark Mode

ดาวน์โหลดไฟล์ส่วนขยาย Google Drive Dark Mode ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
            ]
        }
    ]
}