Redmine Linker
Add a link near Github commit message with #issue_id to a Redmine story link.
Redmine Linker란 무엇입니까?
Redmine Linker은(는) tib.pierre에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a link near Github commit message with #issue_id to a Redmine story link."입니다.
확장 프로그램 스크린샷
Redmine Linker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
In Github, all your commits with "#issue_id" in the message will have a link to your Redmine story. Don't forget to configure your Redmine URL in the extension settings ex: http://redmine.example.com/issues/ Feel free to contribute, the source code is on Github https://github.com/T1l3/Redmine-Linker
확장 프로그램 기본 정보
이름 | Redmine Linker |
ID | gmjmmomjpocomeoobbodbniiojlahoep |
공식 URL | https://chromewebstore.google.com/detail/redmine-linker/gmjmmomjpocomeoobbodbniiojlahoep |
설명 | Add a link near Github commit message with #issue_id to a Redmine story link. |
파일 크기 | 46.2 KB |
설치 횟수 | 16 |
현재 버전 | 1.0.1 |
최근 업데이트 | 2013-12-12 |
출시 날짜 | 2013-12-12 |
개발자 | tib.pierre |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.0.1", "manifest_version": 2, "description": "__MSG_appDescription__", "author": [ { "name": "Thibault PIERRE", "email": "[email protected]" } ], "icons": { "16": "images\/redmineicon-16.png", "128": "images\/redmineicon-128.png" }, "default_locale": "en", "permissions": [ "storage" ], "background": { "scripts": [ "scripts\/background.js" ] }, "browser_action": { "default_icon": { "19": "images\/redmineicon-19.png", "38": "images\/redmineicon-38.png" }, "default_title": "Redmine Linker" }, "content_scripts": [ { "matches": [ "http:\/\/github.com\/*", "https:\/\/github.com\/*" ], "js": [ "bower_components\/jquery\/jquery.min.js", "scripts\/main.js" ], "css": [ "styles\/main.css" ] } ], "options_page": "options.html", "web_accessible_resources": [ "images\/redmineicon-16.png" ] } |