Old Google Logos And Icons
Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.
Что такое Old Google Logos And Icons?
Old Google Logos And Icons - это расширение Chrome, разработанное omniZero, и его основная функция - "Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet.".
Снимки экрана расширения
Скачать файл CRX расширения Old Google Logos And Icons
Скачайте файлы расширений Old Google Logos And Icons в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Old Google Logos And Icons |
ID | jfhmfocmbambgopbjhkdncafdlkohmnm |
Официальный URL | https://chromewebstore.google.com/detail/old-google-logos-and-icon/jfhmfocmbambgopbjhkdncafdlkohmnm |
Описание | Brings back old Google apps logos and icons for Gmail, Drive, Calendar and Meet. |
Размер файла | 344 KB |
Количество установок | 2,444 |
Текущая Версия | 1.1.4 |
Последнее Обновление | 2023-08-24 |
Дата публикации | 2020-11-11 |
Рейтинг | 3.76/5 Всего 17 оценок |
Разработчик | omniZero |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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 } |