Clip LeetCode

Copy the LeetCode problem to your clipboard.

What is Clip LeetCode?

Clip LeetCode is a Chrome extension developed by Edgar Ong, and its main feature is "Copy the LeetCode problem to your clipboard.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Clip LeetCode Extension CRX File

Download Clip LeetCode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Clip LeetCode Clip LeetCode
ID cnghimckckgcmhbdokjielmhkmnagdcp
Official URL https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp
Description Copy the LeetCode problem to your clipboard.
File Size 7.43 KB
Installation Count 416
Current Version 2.0.4
Last Updated 2023-12-31
Publish Date 2021-03-17
Rating 5.00/5 Total 4 Ratings
Developer Edgar Ong
Email [email protected]
Payment Type free
Extension Website https://github.com/eddgr/clip-leetcode
Help Page URL https://github.com/eddgr/clip-leetcode
Supported Languages 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\/*"
            ]
        }
    ]
}