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™はMark Montvaiによって開発されたChromeの拡張機能で、その主な機能は「This extension automatically labels your emails in your inbox based on how old they are.」です。

拡張機能のスクリーンショット

screenshot

Time Labeler for Gmail™拡張機能のCRXファイルをダウンロード

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