GifHub
Insert GIFs from Giphy.com into GitHub comments
GifHub란 무엇입니까?
GifHub은(는) Andrew Levine에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Insert GIFs from Giphy.com into GitHub comments"입니다.
확장 프로그램 스크린샷
GifHub 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
GitHub is awesome. GIFs are awesome. 1.0.8 (May 24, 2016): Fix bug preventing button from showing when editing a comment that was just added on a diff. Thanks to Paul Molluzzo for the fix. 1.0.7 (April 24, 2016): Improve page detection to prevent issues on non GH or GH Enterprise sites 1.0.6 (April 20, 2016): Fix issue caused by change in GitHub's JS
확장 프로그램 기본 정보
이름 | |
ID | lponagpckglibniamicamklhfkoebpeb |
공식 URL | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
설명 | Insert GIFs from Giphy.com into GitHub comments |
파일 크기 | 25.84 KB |
설치 횟수 | 452 |
현재 버전 | 1.0.8 |
최근 업데이트 | 2016-05-24 |
출시 날짜 | 2016-05-24 |
평점 | 3.29/5 총 7 개의 평점 |
개발자 | Andrew Levine |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/DrewML/GifHub |
도움말 페이지 URL | https://github.com/DrewML/GifHub/blob/master/README.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GifHub", "version": "1.0.8", "description": "Insert GIFs from Giphy.com into GitHub comments", "manifest_version": 2, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "inject.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "bundle.js", "extension.css" ], "permissions": [ "https:\/\/api.giphy.com\/v1\/*" ], "background": { "scripts": [ "background.js" ], "peristent": false } } |