bitbucket-companion
a companion for bitbucket
bitbucket-companion là gì?
bitbucket-companion là một tiện ích mở rộng Chrome được phát triển bởi Benjamin Santalucia, và tính năng chính của nó là "a companion for bitbucket".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng bitbucket-companion
Tải xuống các tệp mở rộng bitbucket-companion dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | bitbucket-companion |
ID | nnbhbicafgeplheikeiinpiaihcdegap |
URL Chính Thức | https://chromewebstore.google.com/detail/bitbucket-companion/nnbhbicafgeplheikeiinpiaihcdegap |
Mô tả | a companion for bitbucket |
Kích Thước Tệp | 52.89 KB |
Số Lần Cài Đặt | 23 |
Phiên Bản Hiện Tại | 1.5.3 |
Cập Nhật Lần Cuối | 2018-10-17 |
Ngày Phát Hành | 2018-10-17 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Benjamin Santalucia |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ben8p/chrome-extension-bitbucket-companion |
URL Trang Trợ Giúp | https://github.com/ben8p/chrome-extension-bitbucket-companion |
Ngôn Ngữ Được Hỗ Trợ | 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" } |