Bitbucket Server Pull Request Activity

Real-time in-browser activity notifications for pull requests.

Bitbucket Server Pull Request Activityคืออะไร?

Bitbucket Server Pull Request Activity เป็นส่วนขยายของ Chrome ที่พัฒนาโดย underblob และคุณลักษณะหลักของมันคือ "Real-time in-browser activity notifications for pull requests."

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

screenshot

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

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

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

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