Countdown to Inbox Zero

Get to inbox zero quickly by always replying on time.

Countdown to Inbox Zero क्या है?

Countdown to Inbox Zero Sanchit Bareja द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get to inbox zero quickly by always replying on time."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Countdown to Inbox Zero एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}