Bittask for Bitbucket

Converts your Bitbucket issues into a Trello style manager.

Bittask for Bitbucket란 무엇입니까?

Bittask for Bitbucket은(는) Recurship에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts your Bitbucket issues into a Trello style manager."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Bittask is a simple chrome extension which converts your Bitbucket issues into Kanban style lists (similar to Trello, Waffle.io, Zenhub, etc). Manage your issues by simply dragging and dropping between lists, and have it all synced within your team (real time updates coming soon). No need to use a separate project management tool.

Simply get started by installing the application from the Chrome Store and then visiting the repository issues on Bitbucket which you want to work on. By clicking the "Enable Bittask" button it will generate the first list for you and put all your issues in there. You can create as many lists as you want using the "+ Create List" button on the top right. You can also rename or delete your lists later on.

The position and lists get shared across anyone also using the extension, so you can use this as part of your team. The updates are not yet realtime, so you will need to refresh the page to see the latest changes.                    

확장 프로그램 기본 정보

이름 Bittask for Bitbucket Bittask for Bitbucket
ID oooaebjijfadmkbkgmcieohkpdfdcmpo
공식 URL https://chromewebstore.google.com/detail/bittask-for-bitbucket/oooaebjijfadmkbkgmcieohkpdfdcmpo
설명 Converts your Bitbucket issues into a Trello style manager.
파일 크기 893 KB
설치 횟수 61
현재 버전 0.2.9
최근 업데이트 2016-05-28
출시 날짜 2016-05-28
평점 4.00/5 총 12 개의 평점
개발자 Recurship
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://recurship.com/playthinks/2016/4/8/bittask-for-bitbucket
도움말 페이지 URL http://recurship.com/playthinks/2016/4/8/bittask-for-bitbucket
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "version": "0.2.9",
    "manifest_version": 2,
    "description": "__MSG_appDescription__",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/utils\/chromereload.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "background",
        "webRequest",
        "storage",
        "*:\/\/*.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*"
            ],
            "css": [
                "css\/style.css",
                "bower_components\/font-awesome\/css\/font-awesome.css",
                "bower_components\/alertify.js\/dist\/css\/alertify.css"
            ],
            "js": [
                "bower_components\/chrome-platform-analytics\/google-analytics-bundle.js",
                "bower_components\/underscore\/underscore-min.js",
                "bower_components\/firebase\/firebase.js",
                "bower_components\/eventEmitter\/EventEmitter.min.js",
                "bower_components\/moment\/min\/moment.min.js",
                "bower_components\/handlebars\/handlebars.min.js",
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/jquery-ui\/ui\/core.js",
                "bower_components\/jquery-ui\/ui\/widget.js",
                "bower_components\/jquery-ui\/ui\/mouse.js",
                "bower_components\/jquery-ui\/ui\/draggable.js",
                "bower_components\/jquery-ui\/ui\/droppable.js",
                "bower_components\/jquery-ui\/ui\/resizable.js",
                "bower_components\/jquery-ui\/ui\/selectable.js",
                "bower_components\/jquery-ui\/ui\/sortable.js",
                "bower_components\/jquery-ui\/ui\/effect.js",
                "bower_components\/js-sha1\/build\/sha1.min.js",
                "bower_components\/alertify.js\/dist\/js\/alertify.js",
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "partials\/*.html",
        "bower_components\/font-awesome\/fonts\/*"
    ]
}