Bittask for Bitbucket

Converts your Bitbucket issues into a Trello style manager.

Bittask for Bitbucketคืออะไร?

Bittask for Bitbucket เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Recurship และคุณลักษณะหลักของมันคือ "Converts your Bitbucket issues into a Trello style manager."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        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\/*"
    ]
}