Bitbucket Server Extension

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

Bitbucket Server Extensionคืออะไร?

Bitbucket Server Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dragouf และคุณลักษณะหลักของมันคือ "Allow to add group of reviewers for pull request in bitbucket server + other features"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bitbucket Server Extension

ดาวน์โหลดไฟล์ส่วนขยาย Bitbucket Server Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}