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 là gì?

Leetcode: Copy all example test cases là một tiện ích mở rộng Chrome được phát triển bởi ABSCodes, và tính năng chính của nó là "Lets you copy all the example test cases on leetcode with just one click.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Leetcode: Copy all example test cases

Tải xuống các tệp mở rộng Leetcode: Copy all example test cases dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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 :)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Leetcode: Copy all example test cases Leetcode: Copy all example test cases
ID plfcfckljjgfdbpmhofbjfgoedfngnli
URL Chính Thức https://chromewebstore.google.com/detail/leetcode-copy-all-example/plfcfckljjgfdbpmhofbjfgoedfngnli
Mô tả Lets you copy all the example test cases on leetcode with just one click.
Kích Thước Tệp 95.57 KB
Số Lần Cài Đặt 85
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-01-06
Ngày Phát Hành 2021-01-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển ABSCodes
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}