Bitbucket Server Pull Request Activity
Real-time in-browser activity notifications for pull requests.
Bitbucket Server Pull Request Activity란 무엇입니까?
Bitbucket Server Pull Request Activity은(는) underblob에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Real-time in-browser activity notifications for pull requests."입니다.
확장 프로그램 스크린샷
Bitbucket Server Pull Request Activity 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
DISCLAIMER: This extension is for Bitbucket Server 5. It is not intended to work with Bitbucket Cloud. This extension was developed with Bitbucket Server 5.7. Other versions, successive and previous, are not available to the developer; there's no way for me to address defects on other versions. You are welcome to contribute! https://bitbucket.org/underblob/chrome-extension-bitbucket-practivity SCENARIO: You're diligently reviewing every line of code on a file in a pull request, leaving comments and tasks as you go. You realize several minutes later that the file was refactored while you were writing your review, making all of your comments stale and irrelevant! What a waste of time! Wish there was some way to know when the PR was rescoped _as_ it happens instead of finding out after you scoured syntax? Me too! FEATURES: This extension creates a notification list in the bottom right corner of the pull request with all the info that would normally show up in the PR overview tab within seconds of the activity's occurrence: • Comment (added, replied, liked) • Approved, Unapproved, Declined • Rescoped, Merged HOW TO USE: • Use the `]` key or the `[ » ]` button to conveniently hide/show the list if it obscures something beneath it. • Hover and click the 🚫 in the activity to remove it from the list. • Hover and click the 🔎 in the activity to navigate to it. • Click the 🗑️ at the top of the panel to clear all the activity.
확장 프로그램 기본 정보
이름 | Bitbucket Server Pull Request Activity |
ID | ikkojnjgjablomjlcbnejbnfbdifcnee |
공식 URL | https://chromewebstore.google.com/detail/bitbucket-server-pull-req/ikkojnjgjablomjlcbnejbnfbdifcnee |
설명 | Real-time in-browser activity notifications for pull requests. |
파일 크기 | 146 KB |
설치 횟수 | 55 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2019-02-26 |
출시 날짜 | 2019-02-25 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | underblob |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bitbucket.org/underblob/chrome-extension-bitbucket-practivity |
도움말 페이지 URL | https://bitbucket.org/underblob/chrome-extension-bitbucket-practivity/issues?status=new&status=open |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Bitbucket Server Pull Request Activity", "description": "Real-time in-browser activity notifications for pull requests.", "manifest_version": 2, "version": "1.3.0", "icons": { "48": "img\/icon_48.png", "128": "img\/icon_128.png" }, "browser_action": { "default_icon": "img\/icon_48.png", "default_title": "Bitbucket Server Pull Request Activity" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*\/pull-request\/*\/*", "*:\/\/*\/*\/pull-requests\/*\/*" ], "js": [ "lib\/ood.js", "lib\/lodash.min.js", "lib\/timeago.min.js", "utils.js", "init.js", "scripts.js", "activities.js", "controls.js", "help.js", "likes.js", "root.js" ] } ], "permissions": [ "*:\/\/*\/*", "storage", "tabs" ], "web_accessible_resources": [ "user.js" ] } |