github-issue-utils
Utilities for GitHub Issues
github-issue-utils란 무엇입니까?
github-issue-utils은(는) sirkitree에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Utilities for GitHub Issues"입니다.
확장 프로그램 스크린샷
github-issue-utils 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Finds all users for a GitHub project and creates filter links to their issue queues. As a project manager for many projects which use GitHub, It makes my life easier to look at what issues are assigned to a particular user. GitHub issues does not have a UI for this, but you can craft a URL to show you a list of all issues assigned to a particular user. This extension crafts these URLs for you by turning your "Assigned to me" filter link into a dropdown of "Assigned to" links for each user of your project. ## Changelog 1.4: fixes to extension regarding manifest and changes to github DOM 1.3: fix an incorrect filename resulting in a bad install. 1.2: re-apply our changes after an XHR (which github tends to use a lot) 1.1: fixed issue where elements were added even if we didn't have a valid list of users to operate upon.
확장 프로그램 기본 정보
이름 | github-issue-utils |
ID | fhehiakkggdpbcgknhebkbhiadnpplag |
공식 URL | https://chromewebstore.google.com/detail/github-issue-utils/fhehiakkggdpbcgknhebkbhiadnpplag |
설명 | Utilities for GitHub Issues |
파일 크기 | 122 KB |
설치 횟수 | 29 |
현재 버전 | 1.4 |
최근 업데이트 | 2014-03-23 |
출시 날짜 | 2014-03-23 |
평점 | 4.00/5 총 1 개의 평점 |
개발자 | sirkitree |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sirkitree/github-issue-utils |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.4", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "icon-16.png", "128": "icon-128.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/issues*", "https:\/\/github.com\/*\/*\/issues", "https:\/\/github.com\/*\/*\/issues\/*\/*" ], "css": [ "styles\/main.css" ], "js": [ "components\/jquery\/jquery.min.js", "main.js" ] } ], "web_accessible_resources": [ "components\/jquery\/jquery.min.map" ] } |