Clip LeetCode

Copy the LeetCode problem to your clipboard.

什麼是Clip LeetCode?

Clip LeetCode是由Edgar Ong開發的Chrome擴展程式,該擴展的主要功能是“Copy the LeetCode problem to your clipboard.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Clip LeetCode擴展crx文件

下載Clip LeetCode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Spend less time switching between your browser and code editor.

Use the Copy button to easily paste the problem, examples, and contraints in your IDE for reference when you're working on your solution.

You can also use the Copy Markdown button for the formatted problem ready to save as markdown.                    

擴展基本資訊

名稱 Clip LeetCode Clip LeetCode
ID cnghimckckgcmhbdokjielmhkmnagdcp
官方網址 https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp
簡介 Copy the LeetCode problem to your clipboard.
檔案大小 7.43 KB
安裝次數 416
目前版本 2.0.4
更新時間 2023-12-31
上架時間 2021-03-17
評分 5.00/5 共 4 次評分
開發者 Edgar Ong
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/eddgr/clip-leetcode
說明頁面URL https://github.com/eddgr/clip-leetcode
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Clip LeetCode",
    "version": "2.0.4",
    "description": "Copy the LeetCode problem to your clipboard.",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "main.js"
            ],
            "matches": [
                "*:\/\/*.leetcode.com\/problems\/*",
                "*:\/\/*.leetcode.com\/contest\/*\/problems\/*"
            ]
        }
    ]
}