GitHub PR Helper
View and manage labels in GitHub Pull Request views.
GitHub PR Helper란 무엇입니까?
GitHub PR Helper은(는) Pete Bacon Darwin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View and manage labels in GitHub Pull Request views."입니다.
확장 프로그램 스크린샷
GitHub PR Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A Chrome Extension to make the Pull Request view on GitHub nicer ** Major change: Authorization is now done through Personal Access Tokens. You'll need to update your configuration. See the README** For some reason GitHub doesn't provide the same UI for viewing and managing labels on Pull Requests as it does for Issues. In a large project with lots of Pull Requests (such as AngularJS) it is really annoying to have to use the Issue List page for viewing and managing Pull Request labels. This extension, injects this missing UI into GitHub Pull Request list pages to make life easier all round. Features include: - Display labels on PR list pages - Display labels on PR detail pages (removed as Github now does this) - Manage PR labels on PR detail pages (removed as Github now does this) - Milestones shown on PR list pages Please see the README in the GitHub repository (https://github.com/petebacondarwin/github-pr-helper) for further installation and usage instructions; and submit issues or pull requests to make it better!
확장 프로그램 기본 정보
이름 | |
ID | mokbklfnaddkkbolfldepnkfmanfhpen |
공식 URL | https://chrome.google.com/webstore/detail/github-pr-helper/mokbklfnaddkkbolfldepnkfmanfhpen |
설명 | View and manage labels in GitHub Pull Request views. |
파일 크기 | 363 KB |
설치 횟수 | 38 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2014-01-30 |
출시 날짜 | 2014-01-30 |
평점 | 4.50/5 총 2 개의 평점 |
개발자 | Pete Bacon Darwin |
결제 유형 | free |
도움말 페이지 URL | https://github.com/petebacondarwin/github-pr-helper |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub PR Helper", "description": "View and manage labels in GitHub Pull Request views.", "version": "0.3.0", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "author": "Pete Bacon Darwin", "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/pull*" ], "css": [ "styles.css" ], "js": [ "lib\/angular.js", "src\/CSRFScraper.js", "src\/githubAPI.js", "src\/labels.js", "src\/listGroupItems.js", "src\/credentialsForm.js", "src\/githubHacks.js", "src\/flashMessages.js", "src\/extension.js" ] } ], "web_accessible_resources": [ "lib\/jquery-2.0.3.min.map" ] } |