Refined Bitbucket

Improves Bitbucket's user experience

什麼是Refined Bitbucket?

Refined Bitbucket是由Ronald Rey開發的Chrome擴展程式,該擴展的主要功能是“Improves Bitbucket's user experience”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Refined Bitbucket擴展crx文件

下載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
官方網址 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
    }
}