Time Labeler for Gmail™
This extension automatically labels your emails in your inbox based on how old they are.
Что такое Time Labeler for Gmail™?
Time Labeler for Gmail™ - это расширение Chrome, разработанное Mark Montvai, и его основная функция - "This extension automatically labels your emails in your inbox based on how old they are.".
Снимки экрана расширения
Скачать файл CRX расширения Time Labeler for Gmail™
Скачайте файлы расширений Time Labeler for Gmail™ в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
It's a friendly reminder to reply or do else something with it before it's too late. You are able to set the time it takes for an email to be put into one of the categories.
Основная информация о расширении
Название | Time Labeler for Gmail™ |
ID | foaadeeadeihoakfoabhehkcolfabnpi |
Официальный URL | https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi |
Описание | This extension automatically labels your emails in your inbox based on how old they are. |
Размер файла | 73.04 KB |
Количество установок | 143 |
Текущая Версия | 1.7 |
Последнее Обновление | 2014-06-17 |
Дата публикации | 2014-06-17 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Mark Montvai |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Time Labeler for Gmail\u2122", "description": "This extension automatically labels your emails in your inbox based on how old they are.", "version": "1.7", "permissions": [ "https:\/\/mail.google.com\/", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "style.css" ], "js": [ "jquery.js", "moment.js", "hashchange.js", "script.js" ], "run_at": "document_idle" } ], "options_page": "options.html", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |