Mighty GitHub PRs
Restyle Pull Request screen for easier navigation and more focused review sessions.
Mighty GitHub PRs란 무엇입니까?
Mighty GitHub PRs은(는) adam.graf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Restyle Pull Request screen for easier navigation and more focused review sessions."입니다.
확장 프로그램 스크린샷
Mighty GitHub PRs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an extension to restyle Pull Request screen for easier navigation and more focused review sessions in GitHub (public or any private/enterprise edition). Main features: - works on corporate enterprise domains, you just need to enable in the context menu of the extension in Chrome toolbar: - shows file tree on the left hand side - folders are collapsible - folders are as concise as possible (if a folder containing on single folder it is merged with parent in visualization) - deleted files are red and crossed through in file tree - seen files become non-highlighted once seen - only one single file's diff is shown if a file is selected from the tree - large, visible Approve and Needs work buttons added ('Need work' button automatically adds a generic 'Please fix review items' comment.) - clutter is reduced - elements on the top of the page is eliminated in the file navigation view to eliminate visual noise
확장 프로그램 기본 정보
이름 | Mighty GitHub PRs |
ID | hopnfcjjghjpkfdiffabbpcpnhcpkceg |
공식 URL | https://chromewebstore.google.com/detail/mighty-github-prs/hopnfcjjghjpkfdiffabbpcpnhcpkceg |
설명 | Restyle Pull Request screen for easier navigation and more focused review sessions. |
파일 크기 | 39.5 KB |
설치 횟수 | 118 |
현재 버전 | 1.1.1 |
최근 업데이트 | 2021-03-29 |
출시 날짜 | 2019-11-12 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | adam.graf |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/netgrafe/mighty-github-prs |
도움말 페이지 URL | https://github.com/netgrafe/mighty-github-prs |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Mighty GitHub PRs", "version": "1.1.1", "description": "Restyle Pull Request screen for easier navigation and more focused review sessions.", "manifest_version": 2, "icons": { "48": "mighty-github-icon-48x48.png", "128": "mighty-github-icon-128x128.png", "192": "mighty-github-icon-192x192.png" }, "browser_action": { "default_icon": { "48": "mighty-github-icon-48x48.png", "128": "mighty-github-icon-128x128.png", "192": "mighty-github-icon-192x192.png" } }, "permissions": [ "tabs", "contextMenus", "*:\/\/*.github.com\/*" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "webext-permissions-events-polyfill.js", "webext-dynamic-content-scripts.js", "webext-domain-permission-toggle.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.github.com\/*" ], "css": [ "pr-optimizer.css" ], "js": [ "pr-optimizer.js" ] } ] } |