Leetcode List Stats
Shows solved/total for Leetcode lists
什么是Leetcode List Stats?
Leetcode List Stats是由nurgasemetey开发的Chrome扩展程序,该扩展的主要功能是“Shows solved/total for Leetcode lists”。
扩展截图
下载Leetcode List Stats扩展crx文件
下载Leetcode List Stats扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
As you know Leetcode doesn't show number of solved problems in lists.
With this extension you can view stats for Leetcode problem lists.
Source code: https://github.com/nurgasemetey/leetcode-list-stats 扩展基本信息
| 名称 | |
| ID | plpmpjdanlhakphajpkakpleiomfkpmg |
| 官方URL | https://chromewebstore.google.com/detail/leetcode-list-stats/plpmpjdanlhakphajpkakpleiomfkpmg |
| 简介 | Shows solved/total for Leetcode lists |
| 文件大小 | 185 KB |
| 安装次数 | 200 |
| 当前版本 | 1.0.6 |
| 更新时间 | 2021-11-27 |
| 上架时间 | 2021-10-24 |
| 开发者 | nurgasemetey |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/nurgasemetey/leetcode-list-stats |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Leetcode List Stats",
"short_name": "LeetcodeListStats",
"description": "Shows solved\/total for Leetcode lists",
"version": "1.0.6",
"permissions": [
"*:\/\/*.leetcode.com\/*"
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "icon128.png"
},
"browser_action": {
"default_title": "Leetcode List Stats",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"manifest_version": 2
} | |