Github Annotator
Show user details and repository info in a tooltip.
Github Annotator란 무엇입니까?
Github Annotator은(는) Mesut Tasci에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show user details and repository info in a tooltip."입니다.
확장 프로그램 스크린샷
Github Annotator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages. Extension source code: https://github.com/mesuutt/github-annotator
확장 프로그램 기본 정보
이름 | Github Annotator |
ID | epmbkocbfiejffcjahjhncadlipmdime |
공식 URL | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
설명 | Show user details and repository info in a tooltip. |
파일 크기 | 81.68 KB |
설치 횟수 | 214 |
현재 버전 | 2.1 |
최근 업데이트 | 2017-10-22 |
출시 날짜 | 2017-10-22 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | Mesut Tasci |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://github.com/mesuutt/github-annotator |
도움말 페이지 URL | https://github.com/mesuutt/github-annotator/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Annotator", "description": "Show user details and repository info in a tooltip.", "manifest_version": 2, "version": "2.1", "permissions": [ "storage" ], "content_scripts": [ { "js": [ "jquery-1.9.1.min.js", "contentscript.js" ], "css": [ "style.css" ], "matches": [ "https:\/\/github.com\/" ] } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" } } |