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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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