LeetCode Digest
一键生成LeetCode的学习笔记,并保存成markdown。(目前仅支持中国区LeetCode!)
LeetCode Digestとは何ですか?
LeetCode Digestはderektankoによって開発されたChromeの拡張機能で、その主な機能は「一键生成LeetCode的学习笔记,并保存成markdown。(目前仅支持中国区LeetCode!)」です。
拡張機能のスクリーンショット
LeetCode Digest拡張機能のCRXファイルをダウンロード
LeetCode Digest拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
一键生成LeetCode的学习笔记,并保存成markdown。
(目前仅支持中国区LeetCode)
你可以根据你所想要保存的信息,勾选相应的选项,然后一键生成关于当前页面这道leetcode题的markdown笔记。
另外,你还可以选择这道题的额外信息,例如“这道题我没做出来”,“这道题的知识点很重要”,来给你的笔记添加额外标记,方便复习。 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |