Gmail Classic Theme
An extension for reverting Gmail to the Classic Theme
Что такое Gmail Classic Theme?
Gmail Classic Theme - это расширение Chrome, разработанное Andrew Powell @shellscape, и его основная функция - "An extension for reverting Gmail to the Classic Theme".
Снимки экрана расширения
Скачать файл CRX расширения Gmail Classic Theme
Скачайте файлы расширений Gmail Classic Theme в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
What Google giveth, Google taketh away. Google has recently forced a UI update upon the users of Gmail. Unfortunately, not everyone thinks it's an improvement. Installing this extension will revert the UI of Gmail to the previous "Classic" theme. The theme is based on the actual CSS from the previous UI and makes no additions or subjective changes. This extension is open source. You can review or contribute to the code for this extension here: https://github.com/shellscape/gmail-classic. Release info and change-log can be found here: https://github.com/shellscape/gmail-classic/releases.
Основная информация о расширении
Название | |
ID | cokholnilkppcchlfepienmlbafkjplj |
Официальный URL | https://chrome.google.com/webstore/detail/gmail-classic-theme/cokholnilkppcchlfepienmlbafkjplj |
Описание | An extension for reverting Gmail to the Classic Theme |
Размер файла | 17.38 KB |
Количество установок | 994 |
Текущая Версия | 0.1.1 |
Последнее Обновление | 2018-11-19 |
Дата публикации | 2018-11-19 |
Рейтинг | 4.00/5 Всего 7 оценок |
Разработчик | Andrew Powell @shellscape |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/shellscape/gmail-classic |
URL страницы помощи | https://github.com/shellscape/gmail-classic |
Поддерживаемые языки | en |
manifest.json | |
{ "name": "Gmail Classic Theme", "short_name": "Gmail Classic Theme", "version": "0.1.1", "description": "An extension for reverting Gmail to the Classic Theme", "homepage_url": "http:\/\/github.com\/shellscape\/gmail-classic", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Andrew Powell (shellscape)", "manifest_version": 2, "browser_action": { "default_icon": { "19": "\/assets\/16.png", "38": "\/assets\/48.png" } }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "gmail.css" ] } ], "icons": { "16": "\/assets\/16.png", "32": "\/assets\/32.png", "48": "\/assets\/48.png", "64": "\/assets\/64.png", "128": "\/assets\/128.png" }, "permissions": [ "activeTab", "*:\/\/mail.google.com\/" ] } |