Bitbucket Pull Request File Review

Mark individual files as reviewed in Bitbucket Pull Requests

Bitbucket Pull Request File Reviewคืออะไร?

Bitbucket Pull Request File Review เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vandenberghe.jeroen และคุณลักษณะหลักของมันคือ "Mark individual files as reviewed in Bitbucket Pull Requests"

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

screenshot
screenshot

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

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

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

                        With this extension you can mark individual files as reviewed. It can help you review (big) pull requests.

This extension brings you a fantastic feature of Github and an announced one for Bitbucket cloud: mark individual files of a pull request as reviewed.

This extension only works with the new beta pull request experience of Atlassian Bitbucket cloud. You can enable this feature via a lab.
We use the collapsible diffs feature as a way to mark files as reviewed and style them accordingly.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Bitbucket Pull Request File Review Bitbucket Pull Request File Review
ID bllckhlhnfngflclpdalooiehmijjbaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/bitbucket-pull-request-fi/bllckhlhnfngflclpdalooiehmijjbaf
คำอธิบาย Mark individual files as reviewed in Bitbucket Pull Requests
ขนาดไฟล์ 6.92 KB
จำนวนการติดตั้ง 50
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2020-12-09
วันที่เผยแพร่ 2020-11-24
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา vandenberghe.jeroen
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/JeroenVdb/bitbucket-pullrequest-file-review
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bitbucket Pull Request File Review",
    "version": "1.3",
    "description": "Mark individual files as reviewed in Bitbucket Pull Requests",
    "manifest_version": 2,
    "permissions": [
        "https:\/\/bitbucket.org\/*\/pull-requests\/*",
        "webNavigation",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*\/pull-requests\/*"
            ],
            "js": [
                "bb-pr-markfilesreviewed.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}