Jenkins Status Tab

Show the status of a Jenkins build in the tab title.

Jenkins Status Tab là gì?

Jenkins Status Tab là một tiện ích mở rộng Chrome được phát triển bởi christianvuerings, và tính năng chính của nó là "Show the status of a Jenkins build in the tab title.".

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

screenshot

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

Tải xuống các tệp mở rộng Jenkins Status Tab 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

                        Show the status of a Jenkins build in the tab.

Notes:
 - This plugin automatically enables auto refresh which may cause some heavy data usage.                    

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

Tên Jenkins Status Tab Jenkins Status Tab
ID bpfcpdnjoengdphlnneoilmphaelapnn
URL Chính Thức https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn
Mô tả Show the status of a Jenkins build in the tab title.
Kích Thước Tệp 30.56 KB
Số Lần Cài Đặt 17
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2016-11-23
Ngày Phát Hành 2016-11-23
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển christianvuerings
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/christianvuerings/jenkins-status-tab
URL Trang Trợ Giúp https://github.com/christianvuerings/jenkins-status-tab/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jenkins Status Tab",
    "description": "Show the status of a Jenkins build in the tab title.",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "icons.js",
                "execute.js"
            ]
        }
    ],
    "icons": {
        "32": "32.png",
        "64": "64.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_title": "Make this page blue"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/*\/",
        "http:\/\/*\/"
    ]
}