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