Clip LeetCode
Copy the LeetCode problem to your clipboard.
Vad är Clip LeetCode?
Clip LeetCode är en Chrome-tillägg utvecklad av Edgar Ong, och dess huvudfunktion är "Copy the LeetCode problem to your clipboard.".
Tilläggsskärmbilder
Ladda ner Clip LeetCode-förlängningens CRX-fil
Ladda ner Clip LeetCode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Clip LeetCode |
ID | cnghimckckgcmhbdokjielmhkmnagdcp |
Officiell webbadress | https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp |
Beskrivning | Copy the LeetCode problem to your clipboard. |
Filstorlek | 7.43 KB |
Antal Installationer | 416 |
Aktuell Version | 2.0.4 |
Senast Uppdaterad | 2023-12-31 |
Publiceringsdatum | 2021-03-17 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | Edgar Ong |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/eddgr/clip-leetcode |
Hjälpsida URL | https://github.com/eddgr/clip-leetcode |
Stödda Språk | 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\/*" ] } ] } |