Leetcode Timer

Easily time your leetcode practise sessions with automatic time setting based on difficulty

Leetcode Timer क्या है?

Leetcode Timer Samarth Tambad द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easily time your leetcode practise sessions with automatic time setting based on difficulty"।

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

screenshot
screenshot
screenshot

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

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

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

                        Simple and easy to use companion timer for leetcode.com.

This is a tool I built to improve my own productivity. Hope it helps spike your productivity too.

Features:
1. Set time for difficulty levels
2. Automatically detects difficulty and sets the time accordingly
3. Timer embedded inside leetcode page. No need to navigate anywhere.
4. Alert when time over

Usage:
1. Navigate to options page of extension
2. Modify default time for Easy, Medium and Hard problems.
3. Click on icon button to start timer.

Open Source:
This is an open source project. Source can be found at https://github.com/samarthtambad/leetcode-timer. Feel free to contribute to the project by creating a pull request on GitHub.                    

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

नाम Leetcode Timer Leetcode Timer
ID hihcjkhhlbmckhhnjamfomegbnlffcni
आधिकारिक URL https://chromewebstore.google.com/detail/leetcode-timer/hihcjkhhlbmckhhnjamfomegbnlffcni
विवरण Easily time your leetcode practise sessions with automatic time setting based on difficulty
फ़ाइल का आकार 198 KB
स्थापना संख्या 4,200
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-06-15
प्रकाशन तिथि 2020-06-15
रेटिंग 3.67/5 कुल 9 रेटिंग्स
डेवलपर Samarth Tambad
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Timer",
    "description": "Easily time your leetcode practise sessions with automatic time setting based on difficulty",
    "version": "1.0.0",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_play_48.png",
        "128": "icons\/icon_play_128.png"
    },
    "browser_action": {
        "default_title": "leetcode-timer",
        "default_icon": {
            "48": "icons\/icon_play_48.png",
            "128": "icons\/icon_play_128.png"
        }
    },
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/leetcode.com\/problems\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ]
}