Countdown to Inbox Zero

Get to inbox zero quickly by always replying on time.

Countdown to Inbox Zero란 무엇입니까?

Countdown to Inbox Zero은(는) Sanchit Bareja에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get to inbox zero quickly by always replying on time."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Countdown to Inbox Zero 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Have you struggled with getting to inbox zero with those piling emails?

Countdown to Inbox Zero shows you how much time you've left before you have to act on unread emails. Each unread email gets a 12-hour countdown timer. Reply, Mark as Read, Delete or Archive - act on your unread emails quickly to prevent them from piling. 

There are 3 stages to this time. 
1. When you get an email, a normal 12-hour countdown timer starts.
2. After 4 hours, you've 8 hours left to reply and your timer will turn *orange*.
3. After 11 hours, you've only 1 left to reply. Your timer is now *red* and you should act on it immediately.

Once emails are over 4 days due, the timer shuts down (since it's probably not worth tracking anymore!)

These urgency levels are customizable and can be set to any value.

By adhering to the countdown timer, clients and co-workers alike might notice your promptness and ability to deal with a massive inbox flow. Be in control of your email before it controls you and get to Inbox Zero daily.                    

확장 프로그램 기본 정보

이름 Countdown to Inbox Zero Countdown to Inbox Zero
ID lmofkjhcajneololngecebghcgkkckaf
공식 URL https://chromewebstore.google.com/detail/countdown-to-inbox-zero/lmofkjhcajneololngecebghcgkkckaf
설명 Get to inbox zero quickly by always replying on time.
파일 크기 167 KB
설치 횟수 68
현재 버전 1.6
최근 업데이트 2019-08-13
출시 날짜 2019-08-12
평점 3.60/5 총 5 개의 평점
개발자 Sanchit Bareja
이메일 [email protected]
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Countdown to Inbox Zero",
    "version": "1.6",
    "description": "Get to inbox zero quickly by always replying on time.",
    "permissions": [
        "https:\/\/mail.google.com\/",
        "https:\/\/inbox.google.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "moment.js",
                "inboxsdk.js",
                "get-to-zero.js"
            ],
            "css": [
                "get-to-zero.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.min.js",
            "background.js"
        ]
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/*.mixpanel.com; object-src 'self'",
    "icons": {
        "16": "inbox-zero-icon16.png",
        "32": "inbox-zero-icon32.png",
        "48": "inbox-zero-icon48.png",
        "64": "inbox-zero-icon64.png",
        "128": "inbox-zero-icon128.png"
    }
}