Task Break Timer

A simple countdown timer for tasks and breaks

Task Break Timer क्या है?

Task Break Timer Andrew T द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple countdown timer for tasks and breaks"।

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

screenshot
screenshot

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

crx प्रारूप में Task Break Timer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        A pomodoro style task and break timer for the Chrome browser. This fun extension is configurable with time (5 mins, 10, 20, 30, 40 or 50 minutes), sound alerts and speech alerts.  The alerts can be set at the beginning, at 5 minutes before ending, and at the ending.

* Privacy/Permission: The browser history right is needed because of the "Tabs" permission which is needed to open new tabs by the extension's help/options page. No browsing information is saved locally or transmitted to remote locations.

Background: I created this a year+ ago for my own use after learning about the harmful effects of sitting for prolonged periods. Now (2017 June) publishing it on the Chrome Store as part of my portfolio. This is my highly configurable, fun and useful (hopefully) take on the traditional countdown timer. Enjoy!                    

एक्सटेंशन की मूल जानकारी

नाम Task Break Timer Task Break Timer
ID lgoclpjibbcilaoolkencmdkinhddcme
आधिकारिक URL https://chromewebstore.google.com/detail/task-break-timer/lgoclpjibbcilaoolkencmdkinhddcme
विवरण A simple countdown timer for tasks and breaks
फ़ाइल का आकार 2.88 MB
स्थापना संख्या 65
वर्तमान संस्करण 1.0
अंतिम अपडेट 2017-07-20
प्रकाशन तिथि 2017-07-19
रेटिंग 2.00/5 कुल 2 रेटिंग्स
डेवलपर Andrew T
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://taskbreaktimer.blogspot.com/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Task Break Timer",
    "description": "A simple countdown timer for tasks and breaks",
    "version": "1.0",
    "icons": {
        "16": "image\/icon16.png",
        "32": "image\/icon32.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "browser_action": {
        "default_title": "Task Break Timer"
    },
    "permissions": [
        "alarms",
        "contextMenus",
        "notifications",
        "storage",
        "tts"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+1"
            }
        },
        "reset_timer": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Reset timer"
        }
    }
}