bitbucket-companion
a companion for bitbucket
什麼是bitbucket-companion?
bitbucket-companion是由Benjamin Santalucia開發的Chrome擴展程式,該擴展的主要功能是“a companion for bitbucket”。
擴展截圖
下載bitbucket-companion擴展crx文件
下載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 |
| 官方網址 | 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"
} | |