Bitbucket Server Extension

Allow to add group of reviewers for pull request in bitbucket server + other features

Bitbucket Server Extension란 무엇입니까?

Bitbucket Server Extension은(는) dragouf에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allow to add group of reviewers for pull request in bitbucket server + other features"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Bitbucket Server Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension allow to define groups of reviewers in Atlassian Bitbucket Server to bulk add them when creating or updating pull request.

plus :

✔ Add button in pull request creation page to add group of reviewers
✔ Add comments notification icon in header toolbar
✔ Add filters to the PR list    
✔ Add highlighted header to outdated file in pull request details page instead of the small sticker on the right to improve readability
✔ Add clickable branch text (origin and target) in the pull request details page to go to the corresponding repository easily
✔ Add a sticker on the right of the 'branch overview' page of a repository to list all pull requests comming from this branch (OPEN/MERGED/DECLINED)    
✔ Add a link to start a jenkin build in one click on the pull request details page
✔ Add template button to PR editor

Please visit here for source code and development version : https://github.com/dragouf/Stash-Reviewers-Chrome-Extension                    

확장 프로그램 기본 정보

이름 Bitbucket Server Extension Bitbucket Server Extension
ID hlagecmhpppmpfdifmigdglnhcpnohib
공식 URL https://chromewebstore.google.com/detail/bitbucket-server-extensio/hlagecmhpppmpfdifmigdglnhcpnohib
설명 Allow to add group of reviewers for pull request in bitbucket server + other features
파일 크기 197 KB
설치 횟수 1,700
현재 버전 2.2.17
최근 업데이트 2020-11-05
출시 날짜 2018-07-16
평점 3.77/5 총 22 개의 평점
개발자 dragouf
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dragouf/Stash-Reviewers-Chrome-Extension
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bitbucket Server Extension",
    "description": "Allow to add group of reviewers for pull request in bitbucket server + other features",
    "version": "2.2.17",
    "permissions": [
        "storage",
        "alarms",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "img\/stash19.png",
        "48": "img\/stash48.png",
        "128": "img\/stash148.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/stash48.png",
            "38": "img\/stash48.png"
        },
        "default_popup": "userhosts.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/storage.js",
                "js\/injector_loader.js"
            ],
            "matches": [
                "*:\/\/*.bitbucket.org\/*",
                "*:\/\/*.atlassian.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/storage.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "js\/stash_page.js",
        "js\/stash_detector.js",
        "css\/page_injection.css",
        "js\/default.json",
        "js\/template.txt",
        "img\/stash128.png"
    ],
    "options_ui": {
        "page": "popup.html"
    }
}