LeetCode Digest
一键生成LeetCode的学习笔记,并保存成markdown。(目前仅支持中国区LeetCode!)
LeetCode Digest란 무엇입니까?
LeetCode Digest은(는) derektanko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "一键生成LeetCode的学习笔记,并保存成markdown。(目前仅支持中国区LeetCode!)"입니다.
확장 프로그램 스크린샷
LeetCode Digest 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
一键生成LeetCode的学习笔记,并保存成markdown。 (目前仅支持中国区LeetCode) 你可以根据你所想要保存的信息,勾选相应的选项,然后一键生成关于当前页面这道leetcode题的markdown笔记。 另外,你还可以选择这道题的额外信息,例如“这道题我没做出来”,“这道题的知识点很重要”,来给你的笔记添加额外标记,方便复习。
확장 프로그램 기본 정보
이름 | LeetCode Digest |
ID | odmpdekbgnopnihflclpmokeogciimfb |
공식 URL | https://chromewebstore.google.com/detail/leetcode-digest/odmpdekbgnopnihflclpmokeogciimfb |
설명 | 一键生成LeetCode的学习笔记,并保存成markdown。(目前仅支持中国区LeetCode!) |
파일 크기 | 567 KB |
설치 횟수 | 32 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2020-07-15 |
출시 날짜 | 2020-05-15 |
개발자 | derektanko |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/tankgit/LeetCode-Digest-Chrome |
도움말 페이지 URL | https://github.com/tankgit/LeetCode-Digest-Chrome |
지원되는 언어 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LeetCode Digest", "version": "0.1.2", "description": "\u4e00\u952e\u751f\u6210LeetCode\u7684\u5b66\u4e60\u7b14\u8bb0\uff0c\u5e76\u4fdd\u5b58\u6210markdown\u3002(\u76ee\u524d\u4ec5\u652f\u6301\u4e2d\u56fd\u533aLeetCode!)", "icons": { "16": "img\/16x16.png", "32": "img\/32x32.png", "48": "img\/48x48.png", "128": "img\/128x128.png" }, "browser_action": { "default_icon": "img\/128x128.png", "default_title": "\u4e00\u952e\u751f\u6210LeetCode\u7b14\u8bb0", "default_popup": "main.html" }, "content_scripts": [ { "js": [ "inject.js" ], "matches": [ "http:\/\/leetcode-cn.com\/*", "https:\/\/leetcode-cn.com\/*" ] } ], "permissions": [ "tabs", "storage" ] } |