Clip LeetCode
Copy the LeetCode problem to your clipboard.
Co to jest Clip LeetCode?
Clip LeetCode to rozszerzenie Chrome opracowane przez Edgar Ong, a jego główną funkcją jest „Copy the LeetCode problem to your clipboard.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Clip LeetCode
Pobierz pliki rozszerzeń Clip LeetCode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Clip LeetCode |
ID | cnghimckckgcmhbdokjielmhkmnagdcp |
Oficjalny URL | https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp |
Opis | Copy the LeetCode problem to your clipboard. |
Rozmiar pliku | 7.43 KB |
Liczba instalacji | 416 |
Aktualna Wersja | 2.0.4 |
Ostatnia Aktualizacja | 2023-12-31 |
Data Publikacji | 2021-03-17 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Edgar Ong |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/eddgr/clip-leetcode |
Adres URL Strony Pomocy | https://github.com/eddgr/clip-leetcode |
Obsługiwane Języki | 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\/*" ] } ] } |