Time Labeler for Gmail™

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

Apa itu Time Labeler for Gmail™?

Time Labeler for Gmail™ adalah ekstensi Chrome yang dikembangkan oleh Mark Montvai, dan fitur utamanya adalah "This extension automatically labels your emails in your inbox based on how old they are.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Time Labeler for Gmail™

Unduh file ekstensi Time Labeler for Gmail™ dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Time Labeler for Gmail™ Time Labeler for Gmail™
ID foaadeeadeihoakfoabhehkcolfabnpi
URL Resmi https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi
Deskripsi This extension automatically labels your emails in your inbox based on how old they are.
Ukuran File 73.04 KB
Jumlah Instalasi 143
Versi Saat Ini 1.7
Terakhir Diperbarui 2014-06-17
Tanggal Publikasi 2014-06-17
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Mark Montvai
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}