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 } } |