Bitbucket Filters

Add custom filter links for issues to bitbucket projects

Bitbucket Filters là gì?

Bitbucket Filters là một tiện ích mở rộng Chrome được phát triển bởi Ilya Radchenko, và tính năng chính của nó là "Add custom filter links for issues to bitbucket projects".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bitbucket Filters

Tải xuống các tệp mở rộng Bitbucket Filters dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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".                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bitbucket Filters Bitbucket Filters
ID dbifmilkbhjgdgalenpladkndcfjdpbk
URL Chính Thức https://chromewebstore.google.com/detail/bitbucket-filters/dbifmilkbhjgdgalenpladkndcfjdpbk
Mô tả Add custom filter links for issues to bitbucket projects
Kích Thước Tệp 15.61 KB
Số Lần Cài Đặt 76
Phiên Bản Hiện Tại 0.1.7
Cập Nhật Lần Cuối 2014-12-18
Ngày Phát Hành 2014-12-18
Đánh Giá 5.00/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Ilya Radchenko
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/knownasilya/Bitbucket-Issue-Filters
URL Trang Trợ Giúp https://github.com/knownasilya/Bitbucket-Issue-Filters/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*\/*"
    ]
}