Github Activity Checker
Checks the activity level of GitHub projects
Github Activity Checker란 무엇입니까?
Github Activity Checker은(는) Florian Laurent에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Checks the activity level of GitHub projects"입니다.
확장 프로그램 스크린샷
Github Activity Checker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | |
ID | agebcpekpbkaibjghgakombjjkefmcol |
공식 URL | https://chrome.google.com/webstore/detail/github-activity-checker/agebcpekpbkaibjghgakombjjkefmcol |
설명 | Checks the activity level of GitHub projects |
파일 크기 | 93.82 KB |
설치 횟수 | 34 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2019-03-08 |
출시 날짜 | 2019-03-08 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Florian Laurent |
결제 유형 | free |
지원되는 언어 | 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" ] } ] } |