Old Google Logos And Icons
Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.
Co to jest Old Google Logos And Icons?
Old Google Logos And Icons to rozszerzenie Chrome opracowane przez omniZero, a jego główną funkcją jest „Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Old Google Logos And Icons
Pobierz pliki rozszerzeń Old Google Logos And Icons 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
Replaces new Google Workspace logos and icons with old design. Changes are applied to the logo in the top-left corner of a page as well as to the favicon (tab icon). Includes dynamically updated calendar icons based on current date.
Podstawowe informacje o rozszerzeniu
Nazwa | Old Google Logos And Icons |
ID | jfhmfocmbambgopbjhkdncafdlkohmnm |
Oficjalny URL | https://chromewebstore.google.com/detail/old-google-logos-and-icon/jfhmfocmbambgopbjhkdncafdlkohmnm |
Opis | Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet. |
Rozmiar pliku | 344 KB |
Liczba instalacji | 2,444 |
Aktualna Wersja | 1.1.4 |
Ostatnia Aktualizacja | 2023-08-24 |
Data Publikacji | 2020-11-11 |
Ocena | 3.76/5 Łącznie 17 Oceny |
Deweloper | omniZero |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Old Google Logos And Icons", "version": "1.1.4", "description": "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.", "permissions": [], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } }, "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*", "*:\/\/drive.google.com\/*", "*:\/\/calendar.google.com\/*", "*:\/\/meet.google.com\/*" ], "js": [ "main.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ { "resources": [ "images\/*" ], "matches": [ "*:\/\/mail.google.com\/*", "*:\/\/drive.google.com\/*", "*:\/\/calendar.google.com\/*", "*:\/\/meet.google.com\/*" ] } ], "manifest_version": 3 } |