Refined Bitbucket

Improves Bitbucket's user experience

Refined Bitbucketคืออะไร?

Refined Bitbucket เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ronald Rey และคุณลักษณะหลักของมันคือ "Improves Bitbucket's user experience"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        We all know Bitbucket lacks some features that we find lovely in GitHub and in our minds. And based on Sindre Sorhus' Refined Github extension I had the idea of improving BitBucket's user interface.

Current features

- Adds syntax highlight for commits and pull requests. See the full list of enabled languages in the official project's repository ("Website" link below) and let me know if your language is missing!
- Double click on a word to highlight all occurrences.
- Key binding feature, which allows for quicker navigation through pull requests.
- Button to collapse diffs in Pull Request view.
- Autocollapse. Add filename patterns in the Options page that you would like the extension to collapse automatically when the pull request loads.
- Pullrequest Ignore. Add filename patterns in the Options page that you would like the extension to completely remove when the Pull Request loads.
- Button to load all failed diffs in Pull Request view.
- Choose a default merge strategy for your pull requests.

For more information check out the project's repository ("Website" link below).                    

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

ชื่อ Refined Bitbucket Refined Bitbucket
ID afppminkfnfngihdocacbgeajbbdklkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/refined-bitbucket/afppminkfnfngihdocacbgeajbbdklkf
คำอธิบาย Improves Bitbucket's user experience
ขนาดไฟล์ 339 KB
จำนวนการติดตั้ง 5,386
เวอร์ชันปัจจุบัน 3.26.1
อัปเดตครั้งล่าสุด 2021-11-04
วันที่เผยแพร่ 2020-06-07
คะแนน 4.52/5 รวมทั้งหมด 52 คะแนน
ผู้พัฒนา Ronald Rey
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/refined-bitbucket/refined-bitbucket/
URL หน้าช่วยเหลือ https://github.com/refined-bitbucket/refined-bitbucket/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Refined Bitbucket",
    "description": "Improves Bitbucket's user experience",
    "version": "3.26.1",
    "author": "Ronald Rey",
    "homepage_url": "https:\/\/github.com\/refined-bitbucket\/refined-bitbucket",
    "icons": {
        "16": "icon_16px.png",
        "32": "icon_32px.png",
        "48": "icon_48px.png",
        "64": "icon_64px.png",
        "128": "icon_128px.png",
        "256": "icon_256px.png"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "permissions": [
        "storage",
        "webNavigation",
        "https:\/\/bitbucket.org\/*",
        "https:\/\/api.bitbucket.org\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "prism.js",
                "main.js"
            ],
            "matches": [
                "https:\/\/bitbucket.org\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js",
            "background-for-requests.js",
            "background-for-webnavigation.js"
        ],
        "persistent": false
    }
}