Highlight Me in Buildbot
Highlight your commits on buildbot pages.
What is Highlight Me in Buildbot?
Highlight Me in Buildbot is a Chrome extension developed by https://www.bluestatic.org, and its main feature is "Highlight your commits on buildbot pages.".
Extension Screenshots
Download Highlight Me in Buildbot Extension CRX File
Download Highlight Me in Buildbot extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Highlight Me in Buildbot |
ID | fkkgaddlippjidimcfbpllllclgnikdb |
Official URL | https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb |
Description | Highlight your commits on buildbot pages. |
File Size | 38.77 KB |
Installation Count | 186 |
Current Version | 1.4 |
Last Updated | 2013-05-01 |
Publish Date | 2013-05-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://www.bluestatic.org |
[email protected] | |
Payment Type | free |
Extension Website | http://build.chromium.org/ |
Supported Languages | 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" } |