Time Labeler for Gmail™
This extension automatically labels your emails in your inbox based on how old they are.
Vad är Time Labeler for Gmail™?
Time Labeler for Gmail™ är en Chrome-tillägg utvecklad av Mark Montvai, och dess huvudfunktion är "This extension automatically labels your emails in your inbox based on how old they are.".
Tilläggsskärmbilder
Ladda ner Time Labeler for Gmail™-förlängningens CRX-fil
Ladda ner Time Labeler for Gmail™-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Time Labeler for Gmail™ |
ID | foaadeeadeihoakfoabhehkcolfabnpi |
Officiell webbadress | https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi |
Beskrivning | This extension automatically labels your emails in your inbox based on how old they are. |
Filstorlek | 73.04 KB |
Antal Installationer | 143 |
Aktuell Version | 1.7 |
Senast Uppdaterad | 2014-06-17 |
Publiceringsdatum | 2014-06-17 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Mark Montvai |
Betalningssätt | free |
Stödda Språk | 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 } } |