Leetcode Timer

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

Τι είναι το Leetcode Timer;

Το Leetcode Timer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Samarth Tambad, και η κύρια λειτουργία του είναι "Easily time your leetcode practise sessions with automatic time setting based on difficulty".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Leetcode Timer

Λήψη αρχείων επέκτασης Leetcode Timer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}