Leetcode: Copy all example test cases

Lets you copy all the example test cases on leetcode with just one click.

Leetcode: Copy all example test cases क्या है?

Leetcode: Copy all example test cases ABSCodes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lets you copy all the example test cases on leetcode with just one click."।

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

screenshot
screenshot
screenshot

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

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

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

                        Coding on leetcode? Like to sanity test your code before submitting? But tired of copying manually each test case input and pasting it in Custom Testcase box? 😕
Then you are in the right place! This extension boosts your productivity by automating the above process.

This extension lets you copy all the example test cases to your clipboard with just a single press of your keyboard! 
Use CTRL+SHIFT+RIGHT key combination and done! All test cases are copied to your clipboard.
You can then paste the test cases in Custom Testcase box and sanity test your code!
Isn't that amazing? Go ahead and add this extension right away 💨 and be more productive :)                    

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

नाम Leetcode: Copy all example test cases Leetcode: Copy all example test cases
ID plfcfckljjgfdbpmhofbjfgoedfngnli
आधिकारिक URL https://chromewebstore.google.com/detail/leetcode-copy-all-example/plfcfckljjgfdbpmhofbjfgoedfngnli
विवरण Lets you copy all the example test cases on leetcode with just one click.
फ़ाइल का आकार 95.57 KB
स्थापना संख्या 85
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-01-06
प्रकाशन तिथि 2021-01-05
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर ABSCodes
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode: Copy all example test cases",
    "version": "1.0",
    "description": "Lets you copy all the example test cases on leetcode with just one click.",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        }
    },
    "commands": {
        "copy-paste": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "Command+Shift+Right"
            },
            "description": "Copy all test cases and paste it in Custom Testcase box."
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "manifest_version": 2
}