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开发的Chrome扩展程序,该扩展的主要功能是“Lets you copy all the example test cases on leetcode with just one click.”。

扩展截图

screenshot
screenshot
screenshot

下载Leetcode: Copy all example test cases扩展crx文件

下载Leetcode: Copy all example test cases扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}