Gmail++
Improves the user experience of Gmail
Что такое Gmail++?
Gmail++ - это расширение Chrome, разработанное Michael Pfaff, и его основная функция - "Improves the user experience of Gmail".
Снимки экрана расширения
Скачать файл CRX расширения Gmail++
Скачайте файлы расширений Gmail++ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Improves the user experience of Gmail.
Features:
- Modifies the refresh button (the one above the threads list, not beside the address bar) to also check external POP3 accounts.
- Checks external POP3 accounts on page load.
- Checks external POP3 accounts at a configurable interval. Основная информация о расширении
| Название | |
| ID | jcbfnofllipbepnolhgcdloichjbcena |
| Официальный URL | https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena |
| Описание | Improves the user experience of Gmail |
| Размер файла | 9.16 KB |
| Количество установок | 182 |
| Текущая Версия | 1.1.0 |
| Последнее Обновление | 2022-10-12 |
| Дата публикации | 2022-10-09 |
| Разработчик | Michael Pfaff |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Gmail++",
"version": "1.1.0",
"description": "Improves the user experience of Gmail",
"icons": {
"48": "icons\/icon-48.png",
"64": "icons\/icon-64.png"
},
"permissions": [
"storage"
],
"host_permissions": [
"*:\/\/mail.google.com\/"
],
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"lib.js",
"main.js"
],
"run_at": "document_end"
}
],
"options_ui": {
"page": "options.html",
"browser_style": true
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
}
} | |