Issue Inspector
Preview the most upvoted comments for github issues without scrolling
Issue Inspector란 무엇입니까?
Issue Inspector은(는) Xetera에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Preview the most upvoted comments for github issues without scrolling"입니다.
확장 프로그램 스크린샷
Issue Inspector 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Instantly find the solution you're looking for in GitHub issues. Issue Inspector ranks each comment on issues by the reactions. Comments with many +1 and heart are probably solutions so they go at the top. This project is still a work in production. If you encounter any bugs, feel free to open up a uh... GitHub issue on the repository
확장 프로그램 기본 정보
이름 | Issue Inspector |
ID | jcekpjkpiblmimjfbejfdkngbmdgaeen |
공식 URL | https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen |
설명 | Preview the most upvoted comments for github issues without scrolling |
파일 크기 | 29.83 KB |
설치 횟수 | 109 |
현재 버전 | 3.1.0 |
최근 업데이트 | 2023-01-08 |
출시 날짜 | 2020-03-20 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Xetera |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Xetera/issue-inspector |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Issue Inspector", "description": "Preview the most upvoted comments for github issues without scrolling", "version": "3.1.0", "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": "magnifying_glass.png", "default_popup": "popup.html" }, "icons": { "128": "magnifying_glass.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_end", "js": [ "js\/content_script.js" ] } ], "web_accessible_resources": [ "*.png" ], "background": { "scripts": [ "js\/background.js" ] }, "permissions": [ "webNavigation" ] } |