Time Labeler for Gmail™

This extension automatically labels your emails in your inbox based on how old they are.

Cos'è Time Labeler for Gmail™?

Time Labeler for Gmail™ è un'estensione di Chrome sviluppata da Mark Montvai, e la sua funzione principale è "This extension automatically labels your emails in your inbox based on how old they are.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Time Labeler for Gmail™

Scarica i file di estensione Time Labeler for Gmail™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Time Labeler for Gmail™ Time Labeler for Gmail™
ID foaadeeadeihoakfoabhehkcolfabnpi
URL Ufficiale https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi
Descrizione This extension automatically labels your emails in your inbox based on how old they are.
Dimensione del File 73.04 KB
Conteggio Installazioni 143
Versione Corrente 1.7
Ultimo Aggiornamento 2014-06-17
Data di Pubblicazione 2014-06-17
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Mark Montvai
Tipo di Pagamento free
Lingue Supportate 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
    }
}