Google Drive Dark Mode
Dark mode for Google Drive!
Co to jest Google Drive Dark Mode?
Google Drive Dark Mode to rozszerzenie Chrome opracowane przez Ivan Hidalgo, a jego główną funkcją jest „Dark mode for Google Drive!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Drive Dark Mode
Pobierz pliki rozszerzeń Google Drive Dark Mode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Drive Dark Mode |
ID | mhlhbpejnmlkaiaggagblklodbbldmmc |
Oficjalny URL | https://chromewebstore.google.com/detail/google-drive-dark-mode/mhlhbpejnmlkaiaggagblklodbbldmmc |
Opis | Dark mode for Google Drive! |
Rozmiar pliku | 21.95 KB |
Liczba instalacji | 66,670 |
Aktualna Wersja | 1.0.4 |
Ostatnia Aktualizacja | 2024-01-21 |
Data Publikacji | 2022-11-27 |
Ocena | 3.43/5 Łącznie 103 Oceny |
Deweloper | Ivan Hidalgo |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/*" ] } ] } |