LeetSuite

Additional features for LeetCode

LeetSuite क्या है?

LeetSuite Song द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Additional features for LeetCode"।

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

screenshot
screenshot

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

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

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

                        LeetSuite is completely hands-off and stays out of your way!

LeetSuite works in the background so you can focus on LeetCode instead of going back and forth between answering questions and using the features of the extension.

It includes a minimal popup UI that shows you what question you should retry, based on a spaced repetition algorithm. It also includes a home page that allows you to view stats on your submissions along with all the questions in your queue.

Features
--------------
- completely hands-off, all the features work without you doing anything!
- records stats on your submissions and acceptance rate for each question
- reminds you to redo questions after a certain time interval, based on spaced repetition                    

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

नाम LeetSuite LeetSuite
ID fgpjfncacnkpldghchkgcpcgehbjbofe
आधिकारिक URL https://chrome.google.com/webstore/detail/leetsuite/fgpjfncacnkpldghchkgcpcgehbjbofe
विवरण Additional features for LeetCode
फ़ाइल का आकार 58.94 KB
स्थापना संख्या 279
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-08-11
प्रकाशन तिथि 2020-08-11
रेटिंग 3.67/5 कुल 3 रेटिंग्स
डेवलपर Song
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetSuite",
    "version": "1.0.0",
    "description": "Additional features for LeetCode",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "webRequest",
        "*:\/\/*.leetcode.com\/*"
    ],
    "background": {
        "scripts": [
            ".\/background\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/leetcode.com\/problems\/*"
            ],
            "run_at": "document_idle",
            "js": [
                ".\/content\/content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": ".\/ui\/popup\/index.html",
        "default_icon": {
            "16": ".\/icons\/favicon-16x16.png",
            "32": ".\/icons\/favicon-32x32.png",
            "48": ".\/icons\/favicon-48x48.png",
            "128": ".\/icons\/favicon-128x128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/favicon-16x16.png",
        "32": ".\/icons\/favicon-32x32.png",
        "48": ".\/icons\/favicon-48x48.png",
        "128": ".\/icons\/favicon-128x128.png"
    }
}