Bitbucket Filters

Add custom filter links for issues to bitbucket projects

Bitbucket Filters란 무엇입니까?

Bitbucket Filters은(는) Ilya Radchenko에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add custom filter links for issues to bitbucket projects"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Bitbucket Filters 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Allows for creating custom filters for your repositories that persist across Chrome accounts. 

To add a filter, go to Issues > Advanced Search, select your options, then press the "Save & Search" button.

To edit a filter, go to Issues > Advanced Search, select 'edit' from dropdown of one of the filters. Change your filter options, and press the "Save & Search" button. Select "OK" when the name comes up, and confirm overwrite.

To delete a filter, go to Issues > Advanced Search, select 'delete' from dropdown of one of the filters. Confirm that you want to delete by clicking "OK".                    

확장 프로그램 기본 정보

이름 Bitbucket Filters Bitbucket Filters
ID dbifmilkbhjgdgalenpladkndcfjdpbk
공식 URL https://chromewebstore.google.com/detail/bitbucket-filters/dbifmilkbhjgdgalenpladkndcfjdpbk
설명 Add custom filter links for issues to bitbucket projects
파일 크기 15.61 KB
설치 횟수 76
현재 버전 0.1.7
최근 업데이트 2014-12-18
출시 날짜 2014-12-18
평점 5.00/5 총 8 개의 평점
개발자 Ilya Radchenko
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/knownasilya/Bitbucket-Issue-Filters
도움말 페이지 URL https://github.com/knownasilya/Bitbucket-Issue-Filters/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.1.7",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/bitbucket.org\/*\/*",
                "https:\/\/bitbucket.org\/*\/*"
            ],
            "css": [
                "styles\/main.css"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "http:\/\/bitbucket.org\/*\/*",
        "https:\/\/bitbucket.org\/*\/*"
    ]
}