GitHub Issue Creator
Create GitHub issues with custom templates automatically applied
GitHub Issue Creator란 무엇입니까?
GitHub Issue Creator은(는) AO에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create GitHub issues with custom templates automatically applied"입니다.
확장 프로그램 스크린샷
GitHub Issue Creator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
HOW TO USE: - Locate extension button or go to `chrome://extensions`, to find the extension options. - Specify the repositories you would like to create issues for - Go to the Extension Options for more info! Source Code: https://github.com/MattyAyOh/GitHubIssueCreator
확장 프로그램 기본 정보
이름 | GitHub Issue Creator |
ID | bbjdgjibmbfbjhddelhcpflgbpmceicp |
공식 URL | https://chromewebstore.google.com/detail/github-issue-creator/bbjdgjibmbfbjhddelhcpflgbpmceicp |
설명 | Create GitHub issues with custom templates automatically applied |
파일 크기 | 90.02 KB |
설치 횟수 | 19 |
현재 버전 | 0.1.9 |
최근 업데이트 | 2016-12-21 |
출시 날짜 | 2016-12-20 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | AO |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": false, "scripts": [ "script\/background.js" ] }, "name": "GitHub Issue Creator", "version": "0.1.9", "manifest_version": 2, "description": "Create GitHub issues with custom templates automatically applied", "icons": { "16": "github_black.png", "48": "github_black.png" }, "permissions": [ "*:\/\/github.com\/", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/issues\/new" ], "js": [ "script\/lib\/jquery.min.js", "script\/lib\/jquery.cursor-position.js", "script\/lib\/jquery.select-range.js", "script\/new-issue-page.js" ] } ], "browser_action": { "default_icon": { "19": "github2.png" }, "default_title": "Create new Github Issue", "default_popup": "popup.html" }, "options_page": "options.html" } |