bitbucket-companion
a companion for bitbucket
Co je bitbucket-companion?
bitbucket-companion je rozšíření Chrome vyvinuté Benjamin Santalucia, a jeho hlavní funkcí je „a companion for bitbucket“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření bitbucket-companion
Stáhněte si soubory rozšíření bitbucket-companion ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | bitbucket-companion |
ID | nnbhbicafgeplheikeiinpiaihcdegap |
Oficiální URL | https://chromewebstore.google.com/detail/bitbucket-companion/nnbhbicafgeplheikeiinpiaihcdegap |
Popis | a companion for bitbucket |
Velikost souboru | 52.89 KB |
Počet instalací | 23 |
Aktuální Verze | 1.5.3 |
Poslední Aktualizace | 2018-10-17 |
Datum Vydání | 2018-10-17 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Benjamin Santalucia |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/ben8p/chrome-extension-bitbucket-companion |
URL Stránky Nápovědy | https://github.com/ben8p/chrome-extension-bitbucket-companion |
Podporované Jazyky | 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" } |