Highlight Me in Buildbot

Highlight your commits on buildbot pages.

Highlight Me in Buildbot là gì?

Highlight Me in Buildbot là một tiện ích mở rộng Chrome được phát triển bởi https://www.bluestatic.org, và tính năng chính của nó là "Highlight your commits on buildbot pages.".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Highlight Me in Buildbot

Tải xuống các tệp mở rộng Highlight Me in Buildbot 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

                        This extension will inject itself into all build.chromium.org console pages. You specify your full committer email in the options page and then it will highlight all your commits as they're cycling on the waterfall.                    

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

Tên Highlight Me in Buildbot Highlight Me in Buildbot
ID fkkgaddlippjidimcfbpllllclgnikdb
URL Chính Thức https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb
Mô tả Highlight your commits on buildbot pages.
Kích Thước Tệp 38.77 KB
Số Lần Cài Đặt 186
Phiên Bản Hiện Tại 1.4
Cập Nhật Lần Cuối 2013-05-01
Ngày Phát Hành 2013-05-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.bluestatic.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://build.chromium.org/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Highlight Me in Buildbot",
    "version": "1.4",
    "manifest_version": 2,
    "description": "Highlight your commits on buildbot pages.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/build.chromium.org\/*",
                "http:\/\/chromegw.corp.google.com\/*",
                "http:\/\/build.webkit.org\/console*",
                "http:\/\/chromium-build-master.appspot.com\/*",
                "https:\/\/chromium-build-master.appspot.com\/*",
                "http:\/\/chromium-build.appspot.com\/*",
                "https:\/\/chromium-build.appspot.com\/*"
            ],
            "css": [
                "highlight-me.css"
            ],
            "js": [
                "highlight-me.js"
            ]
        }
    ],
    "options_page": "options.html"
}