bitbucket-companion
a companion for bitbucket
Was ist bitbucket-companion?
bitbucket-companion ist eine Chrome-Erweiterung, die von Benjamin Santalucia entwickelt wurde, und ihr Hauptmerkmal ist "a companion for bitbucket".
Erweiterungsscreenshots
bitbucket-companion-Erweiterungs-CRX-Datei herunterladen
Laden Sie bitbucket-companion-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nnbhbicafgeplheikeiinpiaihcdegap |
| Offizielle URL | https://chromewebstore.google.com/detail/bitbucket-companion/nnbhbicafgeplheikeiinpiaihcdegap |
| Beschreibung | a companion for bitbucket |
| Dateigröße | 52.89 KB |
| Installationsanzahl | 23 |
| Aktuelle Version | 1.5.3 |
| Letztes Update | 2018-10-17 |
| Veröffentlichungsdatum | 2018-10-17 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Benjamin Santalucia |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/ben8p/chrome-extension-bitbucket-companion |
| Hilfeseite URL | https://github.com/ben8p/chrome-extension-bitbucket-companion |
| Unterstützte Sprachen | 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"
} | |