LeetCode Reminder

Reminder for leetcode practice.

Τι είναι το LeetCode Reminder;

Το LeetCode Reminder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Zich, και η κύρια λειτουργία του είναι "Reminder for leetcode practice.".

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

screenshot

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

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

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

                        Practicing LeetCode for tech-job interviews? Use this reminder for constant reminders to review questions that you have previously done! The more you practice the better you become, and we are here to help you ace your next technical interview!

After downloading the extension, whenever you attempt a leetcode question, the question will automatically be added to storage for later review. You can check back at the extension by clicking it to see the question suggested for review.

Happy LeetCode grind, hope this helps!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα LeetCode Reminder LeetCode Reminder
ID cefbdpiapcpjjjdghhofmnfcpgdhcpec
Επίσημο URL https://chromewebstore.google.com/detail/leetcode-reminder/cefbdpiapcpjjjdghhofmnfcpgdhcpec
Περιγραφή Reminder for leetcode practice.
Μέγεθος Αρχείου 392 KB
Αριθμός Εγκαταστάσεων 866
Τρέχουσα Έκδοση 1.0.2
Τελευταία Ενημέρωση 2020-05-25
Ημερομηνία Δημοσίευσης 2020-05-24
Προγραμματιστής Zich
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCode Reminder",
    "version": "1.0.2",
    "description": "Reminder for leetcode practice.",
    "permissions": [
        "storage",
        "http:\/\/leetcode.com\/*",
        "http:\/\/worldclockapi.com\/api\/json\/utc\/now"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "128x128lcicon.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery-3.4.1.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "128x128lcicon.png",
        "48": "128x128lcicon.png",
        "128": "128x128lcicon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "js": [
                "jquery-3.4.1.js",
                "contents.js"
            ]
        }
    ],
    "manifest_version": 2
}