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
Eメール [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
}