Github Activity Checker
Checks the activity level of GitHub projects
Github Activity Checker là gì?
Github Activity Checker là một tiện ích mở rộng Chrome được phát triển bởi Florian Laurent, và tính năng chính của nó là "Checks the activity level of GitHub projects".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Github Activity Checker
Tải xuống các tệp mở rộng Github Activity Checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension adds a clear activity indicator when browsing GitHub project pages. It's often unclear when looking at a GitHub project how much *recent activity* has occurred. You can check the activity graph, but it's not visible from the project main page and takes times to load. Sometimes you can see that some files have been recently modified, but it's not obvious if it comes from active development or someone doing superficial changes. This extension shows an indicator based on a clear metric: the number of commits done in the past 4 weeks. You can see the precise number of commits by hovering the "activity" label, and you can access the full activity graph by clicking on it. Source (Apache 2.0): https://github.com/MasterScrat/GithubActivityChecker
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | agebcpekpbkaibjghgakombjjkefmcol |
URL Chính Thức | https://chrome.google.com/webstore/detail/github-activity-checker/agebcpekpbkaibjghgakombjjkefmcol |
Mô tả | Checks the activity level of GitHub projects |
Kích Thước Tệp | 93.82 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2019-03-08 |
Ngày Phát Hành | 2019-03-08 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Florian Laurent |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Activity Checker", "version": "0.0.3", "manifest_version": 2, "description": "Checks the activity level of GitHub projects", "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "https:\/\/github.com\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*", "http:\/\/github.com\/*\/*" ], "js": [ "js\/jquery.min.js", "js\/lodash.min.js", "src\/inject\/inject.js" ] } ] } |