Highlight Me in Buildbot

Highlight your commits on buildbot pages.

什么是Highlight Me in Buildbot?

Highlight Me in Buildbot是由https://www.bluestatic.org开发的Chrome扩展程序,该扩展的主要功能是“Highlight your commits on buildbot pages.”。

扩展截图

screenshot
screenshot
screenshot

下载Highlight Me in Buildbot扩展crx文件

下载Highlight Me in Buildbot扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Highlight Me in Buildbot Highlight Me in Buildbot
ID fkkgaddlippjidimcfbpllllclgnikdb
官方URL https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb
简介 Highlight your commits on buildbot pages.
文件大小 38.77 KB
安装次数 186
当前版本 1.4
更新时间 2013-05-01
上架时间 2013-05-01
评分 5.00/5 共1次评分
开发者 https://www.bluestatic.org
电子邮箱 [email protected]
付费类型 free
扩展官网 http://build.chromium.org/
支持的语言 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"
}