countDown

Countdown & countup timer, with simple interface and ability to run multiple timers.

countDown क्या है?

countDown Alexander द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Countdown & countup timer, with simple interface and ability to run multiple timers."।

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

screenshot
screenshot

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

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

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

                        QUICK START:
  I'm working on an improved input system, but for now a quick start for how to use the current one:
  You can use the mouse scroll wheel, just point to the right time field and scroll the wheel up/down to adjust the value (ddd hh:mm:ss).
  You can also use the keyboard by directly typing the desired time. First click on one of the timers (anywhere beside notes) and input your time.
  Examples:
   To set 15 minutes: 15. or 1500 (00:15:00)
   To set 72 hours (3 days): 72.. or 3... (3 00:00:00)
   To set 3 hours and 45 minutes: 345. or 3.45. (03:45:00)
   To set 90 seconds (1:30): 90 or 1.30 (00:01:30)

Fixes:
 * Fixed keyboard input not registering

Features:
 * Tricky input (still working on it)
 * (new ) TTS for notes
 * (new) Shortcuts on badge timer
 * (new) Options to set different sound alarms and volume
 * (new) Notification alert (optional)
 * (new) Multiple colour themes
 * Multiple timers 
 * High range of spans with up to several years
 * Count up like stopwatch (to start, set the timer from 00:00:00)
 * Optimised for extensive use
 * Display timer one the icon badge
 * Set and navigate the timers with keyboard
 * Set timer with scroll wheel
 * Custom notes for each countdown

P.S. Rate the extension and spread the word to encourage the developer (me) to dedicate more time in implementing more features.                    

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

नाम countDown countDown
ID fefdcjabloofphhfcinhfbinmehfcojm
आधिकारिक URL https://chromewebstore.google.com/detail/countdown/fefdcjabloofphhfcinhfbinmehfcojm
विवरण Countdown & countup timer, with simple interface and ability to run multiple timers.
फ़ाइल का आकार 217 KB
स्थापना संख्या 34,949
वर्तमान संस्करण 4.1.3
अंतिम अपडेट 2023-01-25
प्रकाशन तिथि 2020-05-16
रेटिंग 4.16/5 कुल 459 रेटिंग्स
डेवलपर Alexander
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "countDown",
    "short_name": "countDown",
    "description": "__MSG_manifest_descr__",
    "version": "4.1.3",
    "default_locale": "en",
    "offline_enabled": true,
    "icons": {
        "128": "img\/icon-128.png",
        "48": "img\/icon-48.png",
        "19": "img\/icon.png"
    },
    "background": {
        "scripts": [
            "js\/countdown.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "countDown",
        "default_popup": "views\/popup.html"
    },
    "permissions": [
        "notifications",
        "background",
        "tts",
        "storage"
    ],
    "commands": {
        "timer-start": {
            "suggested_key": {
                "default": "Ctrl+Q",
                "mac": "Command+Q"
            },
            "description": "Start\/Pause badge timer"
        },
        "timer-stop": {
            "suggested_key": {
                "default": "Ctrl+Shift+Q",
                "mac": "Command+Shift+Q"
            },
            "description": "Stop badge timer"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Alt+Q",
                "mac": "Alt+Q",
                "chromeos": "Alt+Q",
                "linux": "Alt+Q"
            }
        }
    }
}