Github Issue Reactions
List a link of reactions on a github issue and pull request page
Github Issue Reactions란 무엇입니까?
Github Issue Reactions은(는) Lasse Norfeldt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "List a link of reactions on a github issue and pull request page"입니다.
확장 프로그램 스크린샷
Github Issue Reactions 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Use it to get a quick overview of good comments in a long GitHub issue conversation. Repo to the extension can be found here: Github at Norfeldt/github-issue-reactions-browser-extension
확장 프로그램 기본 정보
이름 | |
ID | enekincdenmmbpgkbhflknhaphpajnfd |
공식 URL | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
설명 | List a link of reactions on a github issue and pull request page |
파일 크기 | 74.39 KB |
설치 횟수 | 1,053 |
현재 버전 | 2.4.4 |
최근 업데이트 | 2023-06-18 |
출시 날짜 | 2022-01-10 |
평점 | 4.33/5 총 3 개의 평점 |
개발자 | Lasse Norfeldt |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Github Issue Reactions", "version": "2.4.4", "description": "List a link of reactions on a github issue and pull request page", "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "storage" ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png", "256": "icon_256.png" }, "host_permissions": [ "https:\/\/www.github.com\/", "http:\/\/www.github.com\/" ] } |