bitbucket-companion
a companion for bitbucket
bitbucket-companionคืออะไร?
bitbucket-companion เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Benjamin Santalucia และคุณลักษณะหลักของมันคือ "a companion for bitbucket"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย bitbucket-companion
ดาวน์โหลดไฟล์ส่วนขยาย bitbucket-companion ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A little companion for atlassian bitbucket server.
- Shows badge to let you know how many pull requests are waiting your approval.
- Gives a dashboard view with recent pull requests changes.
- Tracks comments you may have to read.
- Automatically delete approval when an approved pull request changes.
- Notify you when you have pull requests pending for reviews
- Keep itself up to date with bitbuket server
- Allow to sort in the branches view
Note: This require Bitbucket REST API to be enabled.
CHANGELOG:
1.5.+
- Fix hammering of bitbucket server
- Allow to disable the automatic remove of approval
1.3.+
- Handle server error and notify when there are credentials issues
- Update Icon (red when error, blue otherwise)
- Show latest notification details inside the icon tooltip
1.2.+
- Allow to show/hide some PR states (like not showing already merged PR)
- Allow to disable notifications ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | nnbhbicafgeplheikeiinpiaihcdegap |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/bitbucket-companion/nnbhbicafgeplheikeiinpiaihcdegap |
| คำอธิบาย | a companion for bitbucket |
| ขนาดไฟล์ | 52.89 KB |
| จำนวนการติดตั้ง | 23 |
| เวอร์ชันปัจจุบัน | 1.5.3 |
| อัปเดตครั้งล่าสุด | 2018-10-17 |
| วันที่เผยแพร่ | 2018-10-17 |
| คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
| ผู้พัฒนา | Benjamin Santalucia |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/ben8p/chrome-extension-bitbucket-companion |
| URL หน้าช่วยเหลือ | https://github.com/ben8p/chrome-extension-bitbucket-companion |
| ภาษาที่รองรับ | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"minimum_chrome_version": "50",
"default_locale": "en",
"options_page": "options.html",
"browser_action": {
"default_icon": "img\/icon.png",
"default_popup": "popup.html"
},
"permissions": [
"storage",
"alarms",
"tabs",
"notifications",
"https:\/\/*\/",
"http:\/\/*\/"
],
"background": {
"scripts": [
"js\/events.js"
],
"persistent": true
},
"content_scripts": [
{
"all_frames": false,
"run_at": "document_end",
"js": [
"js\/monitor.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
]
}
],
"description": "a companion for bitbucket",
"name": "bitbucket-companion",
"version": "1.5.3"
} | |