Github Enhanced Project Board

An enhanced UI for Github project boards

Github Enhanced Project Board là gì?

Github Enhanced Project Board là một tiện ích mở rộng Chrome được phát triển bởi Bluehouse Group, và tính năng chính của nó là "An enhanced UI for Github project boards".

Ả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 Github Enhanced Project Board

Tải xuống các tệp mở rộng Github Enhanced Project Board 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

                        An extension to improve the usability of Github project boards. The columns will become responsive and will not overflow off screen. The add column button is moved up to the controls row. There is a new issue button added to the controls. Clicking on issue title will open issue in new window instead of showing summary view.                    

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

Tên Github Enhanced Project Board Github Enhanced Project Board
ID eidmccobchlljnlophmcjgmimneegidp
URL Chính Thức https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp
Mô tả An enhanced UI for Github project boards
Kích Thước Tệp 82.66 KB
Số Lần Cài Đặt 80
Phiên Bản Hiện Tại 1.4.1
Cập Nhật Lần Cuối 2019-04-07
Ngày Phát Hành 2019-04-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Bluehouse Group
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Enhanced Project Board",
    "description": "An enhanced UI for Github project boards",
    "version": "1.4.1",
    "page_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "github.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/github.png"
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "32": "images\/github.png"
    }
}