Time Labeler for Gmail™

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

O que é Time Labeler for Gmail™?

Time Labeler for Gmail™ é uma extensão do Chrome desenvolvida por Mark Montvai, e sua principal característica é "This extension automatically labels your emails in your inbox based on how old they are.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Time Labeler for Gmail™

Baixe arquivos de extensão Time Labeler for Gmail™ no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Time Labeler for Gmail™ Time Labeler for Gmail™
ID foaadeeadeihoakfoabhehkcolfabnpi
URL Oficial https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi
Descrição This extension automatically labels your emails in your inbox based on how old they are.
Tamanho do Arquivo 73.04 KB
Contagem de Instalações 143
Versão Atual 1.7
Última Atualização 2014-06-17
Data de Publicação 2014-06-17
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Mark Montvai
Tipo de Pagamento free
Idiomas Suportados 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
    }
}