Add "Mark All Read" button to GMail
Allows you to mark all messages as read with one click.
Что такое Add "Mark All Read" button to GMail?
Add "Mark All Read" button to GMail - это расширение Chrome, разработанное pressbin, и его основная функция - "Allows you to mark all messages as read with one click.".
Снимки экрана расширения
Скачать файл CRX расширения Add "Mark All Read" button to GMail
Скачайте файлы расширений Add "Mark All Read" button to GMail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The button allows you to change every visible message with an "unread" status to "read" status.
Основная информация о расширении
Название | Add "Mark All Read" button to GMail |
ID | mhgahabpbdjldmonmfgehfhjmgjedjkc |
Официальный URL | https://chromewebstore.google.com/detail/add-mark-all-read-button/mhgahabpbdjldmonmfgehfhjmgjedjkc |
Описание | Allows you to mark all messages as read with one click. |
Размер файла | 4.38 KB |
Количество установок | 672 |
Текущая Версия | 1.3 |
Последнее Обновление | 2022-07-01 |
Дата публикации | 2015-01-06 |
Рейтинг | 3.00/5 Всего 14 оценок |
Разработчик | pressbin |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "content_scripts": [ { "exclude_globs": [], "exclude_matches": [], "include_globs": [ "https:\/\/mail.google.com\/mail*" ], "js": [ "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_end" } ], "converted_from_user_script": true, "description": "Allows you to mark all messages as read with one click.", "name": "Add \"Mark All Read\" button to GMail", "version": "1.3" } |