Restore old Google icons
Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable
Что такое Restore old Google icons?
Restore old Google icons - это расширение Chrome, разработанное claudiopostinghel, и его основная функция - "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable".
Снимки экрана расширения
Скачать файл CRX расширения Restore old Google icons
Скачайте файлы расширений Restore old Google icons в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension restore the old icon on Meet, Calendar and Gmail to make tabs more recognizable. That increases accessibility. Super simple :) nothing more.
Основная информация о расширении
Название | Restore old Google icons |
ID | iellnmonjokmoagdlggagdmfjgpiahmb |
Официальный URL | https://chromewebstore.google.com/detail/restore-old-google-icons/iellnmonjokmoagdlggagdmfjgpiahmb |
Описание | Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable |
Размер файла | 53.17 KB |
Количество установок | 10,498 |
Текущая Версия | 0.2 |
Последнее Обновление | 2020-11-06 |
Дата публикации | 2020-11-02 |
Рейтинг | 4.40/5 Всего 100 оценок |
Разработчик | claudiopostinghel |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://restoreoldicons.xyz/ |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Restore old Google icons", "description": "Restore the old icon on Meet, Calendar, Gmail etc to make tabs more recognizable", "version": "0.2", "content_scripts": [ { "matches": [ "*:\/\/calendar.google.com\/*" ], "js": [ "calendar_script.js" ] }, { "matches": [ "*:\/\/drive.google.com\/*" ], "js": [ "drive_script.js" ] }, { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "gmail_script.js" ] }, { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "meet_script.js" ] } ], "permissions": [ "*:\/\/calendar.google.com\/*", "*:\/\/docs.google.com\/*", "*:\/\/drive.google.com\/*", "*:\/\/mail.google.com\/*", "*:\/\/meet.google.com\/*" ], "browser_action": { "default_icon": "icon16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |