Time Labeler for Gmail™

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

Co je Time Labeler for Gmail™?

Time Labeler for Gmail™ je rozšíření Chrome vyvinuté Mark Montvai, a jeho hlavní funkcí je „This extension automatically labels your emails in your inbox based on how old they are.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Time Labeler for Gmail™

Stáhněte si soubory rozšíření Time Labeler for Gmail™ ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Time Labeler for Gmail™ Time Labeler for Gmail™
ID foaadeeadeihoakfoabhehkcolfabnpi
Oficiální URL https://chromewebstore.google.com/detail/time-labeler-for-gmail/foaadeeadeihoakfoabhehkcolfabnpi
Popis This extension automatically labels your emails in your inbox based on how old they are.
Velikost souboru 73.04 KB
Počet instalací 143
Aktuální Verze 1.7
Poslední Aktualizace 2014-06-17
Datum Vydání 2014-06-17
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Mark Montvai
Typ Platby free
Podporované Jazyky 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
    }
}