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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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