Clip LeetCode

Copy the LeetCode problem to your clipboard.

Apa itu Clip LeetCode?

Clip LeetCode adalah ekstensi Chrome yang dikembangkan oleh Edgar Ong, dan fitur utamanya adalah "Copy the LeetCode problem to your clipboard.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Clip LeetCode

Unduh file ekstensi Clip LeetCode dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Clip LeetCode Clip LeetCode
ID cnghimckckgcmhbdokjielmhkmnagdcp
URL Resmi https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp
Deskripsi Copy the LeetCode problem to your clipboard.
Ukuran File 7.43 KB
Jumlah Instalasi 416
Versi Saat Ini 2.0.4
Terakhir Diperbarui 2023-12-31
Tanggal Publikasi 2021-03-17
Penilaian 5.00/5 Total 4 Penilaian
Pengembang Edgar Ong
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/eddgr/clip-leetcode
URL Halaman Bantuan https://github.com/eddgr/clip-leetcode
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}