Time Labeler for Gmail™
This extension automatically labels your emails in your inbox based on how old they are.
Co to jest Time Labeler for Gmail™?
Time Labeler for Gmail™ to rozszerzenie Chrome opracowane przez Mark Montvai, a jego główną funkcją jest „This extension automatically labels your emails in your inbox based on how old they are.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Time Labeler for Gmail™
Pobierz pliki rozszerzeń Time Labeler for Gmail™ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Time Labeler for Gmail™ |
ID | foaadeeadeihoakfoabhehkcolfabnpi |
Oficjalny URL | https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi |
Opis | This extension automatically labels your emails in your inbox based on how old they are. |
Rozmiar pliku | 73.04 KB |
Liczba instalacji | 143 |
Aktualna Wersja | 1.7 |
Ostatnia Aktualizacja | 2014-06-17 |
Data Publikacji | 2014-06-17 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Mark Montvai |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |