Gmail Classic Button
Add a button to gmail standard view to switch to basic html view.
Что такое Gmail Classic Button?
Gmail Classic Button - это расширение Chrome, разработанное sherro92, и его основная функция - "Add a button to gmail standard view to switch to basic html view.".
Снимки экрана расширения
Скачать файл CRX расширения Gmail Classic Button
Скачайте файлы расширений Gmail Classic Button в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Add a link to gmail in the top right corner which takes you to the classic HTML version of gmail. Use when gmail loads but doesn't respond or otherwise doesn't work reliably in standard view some of the time, but you don't want to make the basic view the default.
Основная информация о расширении
Название | |
ID | npgkldbmkgmjcegpcejmbaeoejppbedm |
Официальный URL | https://chrome.google.com/webstore/detail/gmail-classic-button/npgkldbmkgmjcegpcejmbaeoejppbedm |
Описание | Add a button to gmail standard view to switch to basic html view. |
Размер файла | 96.67 KB |
Количество установок | 339 |
Текущая Версия | 0.10 |
Последнее Обновление | 2014-10-15 |
Дата публикации | 2014-10-15 |
Рейтинг | 3.00/5 Всего 2 оценок |
Разработчик | sherro92 |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Classic Button", "short_name": "gmailclassicbtn", "version": "0.10", "description": "Add a button to gmail standard view to switch to basic html view.", "background": { "scripts": [ "jquery.min.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "gmailswitcher.js" ] } ], "icons": { "32": "icon32.png" } } |