Clip LeetCode

Copy the LeetCode problem to your clipboard.

Cos'è Clip LeetCode?

Clip LeetCode è un'estensione di Chrome sviluppata da Edgar Ong, e la sua funzione principale è "Copy the LeetCode problem to your clipboard.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Clip LeetCode

Scarica i file di estensione Clip LeetCode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Clip LeetCode Clip LeetCode
ID cnghimckckgcmhbdokjielmhkmnagdcp
URL Ufficiale https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp
Descrizione Copy the LeetCode problem to your clipboard.
Dimensione del File 7.43 KB
Conteggio Installazioni 416
Versione Corrente 2.0.4
Ultimo Aggiornamento 2023-12-31
Data di Pubblicazione 2021-03-17
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Edgar Ong
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/eddgr/clip-leetcode
URL della Pagina di Aiuto https://github.com/eddgr/clip-leetcode
Lingue Supportate 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\/*"
            ]
        }
    ]
}