Time Labeler for Gmail™
This extension automatically labels your emails in your inbox based on how old they are.
Was ist Time Labeler for Gmail™?
Time Labeler for Gmail™ ist eine Chrome-Erweiterung, die von Mark Montvai entwickelt wurde, und ihr Hauptmerkmal ist "This extension automatically labels your emails in your inbox based on how old they are.".
Erweiterungsscreenshots
Time Labeler for Gmail™-Erweiterungs-CRX-Datei herunterladen
Laden Sie Time Labeler for Gmail™-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Time Labeler for Gmail™ |
ID | foaadeeadeihoakfoabhehkcolfabnpi |
Offizielle URL | https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi |
Beschreibung | This extension automatically labels your emails in your inbox based on how old they are. |
Dateigröße | 73.04 KB |
Installationsanzahl | 143 |
Aktuelle Version | 1.7 |
Letztes Update | 2014-06-17 |
Veröffentlichungsdatum | 2014-06-17 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Mark Montvai |
Zahlungsart | free |
Unterstützte Sprachen | 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 } } |