Redmine Linker
Add a link near Github commit message with #issue_id to a Redmine story link.
Redmine Linkerคืออะไร?
Redmine Linker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tib.pierre และคุณลักษณะหลักของมันคือ "Add a link near Github commit message with #issue_id to a Redmine story link."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Redmine Linker
ดาวน์โหลดไฟล์ส่วนขยาย Redmine Linker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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"
]
} | |