GitStats
Displays brief GitHub stats for a user.
什么是GitStats?
GitStats是由Akash开发的Chrome扩展程序,该扩展的主要功能是“Displays brief GitHub stats for a user.”。
扩展截图
下载GitStats扩展crx文件
下载GitStats扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Introducing a powerful and convenient tool for all GitHub users, a chrome extension that allows you to easily view a user's GitHub statistics right from their profile or by searching for their username. With this extension, you can quickly access valuable insights about a user's GitHub activity, making it an essential tool for developers and enthusiasts.
Some of the features of GITSTATS include:
- Seamless integration: Access GITSTATS with a single click from any user's GitHub profile or by searching for a specific user.
- Comprehensive statistics: Get detailed information about a user's GitHub activity, including their repository count, total stars received etc.
- Contribution insights: Gain insights into a user's contributions, such as the number of commits, pull requests, and issues they have made
- User-friendly interface: Enjoy a clean and intuitive interface that presents the information in a visually appealing and easy-to-understand format
GITSTATS is a free and open-source extension that is available to download from the Chrome Web Store.
Here are some additional benefits of using GITSTATS:
- Save time by quickly accessing the information you need about a user's GitHub activity
- Make better decisions about who to collaborate with or hire
- Stay up-to-date on the latest developments in your field
- Learn from other developers by analyzing their code
GITSTATS is a powerful tool that can help you improve your GitHub experience. If you are a developer or enthusiast, I encourage you to try it out. 扩展基本信息
| 名称 | |
| ID | jlfolgnhjeibddjpcodabefpkggodigc |
| 官方URL | https://chromewebstore.google.com/detail/gitstats/jlfolgnhjeibddjpcodabefpkggodigc |
| 简介 | Displays brief GitHub stats for a user. |
| 文件大小 | 74.7 KB |
| 安装次数 | 38 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2023-05-25 |
| 上架时间 | 2023-05-25 |
| 评分 | 4.80/5 共5次评分 |
| 开发者 | Akash |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/akash-singh8/GitStats |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"author": "Akash Singh",
"name": "GitStats",
"description": "Displays brief GitHub stats for a user.",
"version": "1.0.0",
"action": {
"default_icon": {
"16": "logo.png",
"32": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"default_title": "GitStats",
"default_popup": "popup.html"
},
"icons": {
"128": "logo.png"
},
"content_scripts": [
{
"js": [
"content_script.js"
],
"matches": [
"https:\/\/github.com\/*"
]
}
]
} | |