Clip LeetCode
Copy the LeetCode problem to your clipboard.
什么是Clip LeetCode?
Clip LeetCode是由Edgar Ong开发的Chrome扩展程序,该扩展的主要功能是“Copy the LeetCode problem to your clipboard.”。
扩展截图
下载Clip LeetCode扩展crx文件
下载Clip LeetCode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Clip LeetCode |
ID | cnghimckckgcmhbdokjielmhkmnagdcp |
官方URL | https://chromewebstore.google.com/detail/clip-leetcode/cnghimckckgcmhbdokjielmhkmnagdcp |
简介 | Copy the LeetCode problem to your clipboard. |
文件大小 | 7.43 KB |
安装次数 | 416 |
当前版本 | 2.0.4 |
更新时间 | 2023-12-31 |
上架时间 | 2021-03-17 |
评分 | 5.00/5 共4次评分 |
开发者 | Edgar Ong |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/eddgr/clip-leetcode |
帮助页面URL | https://github.com/eddgr/clip-leetcode |
支持的语言 | 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\/*" ] } ] } |