Highlight Me in Buildbot
Highlight your commits on buildbot pages.
Was ist Highlight Me in Buildbot?
Highlight Me in Buildbot ist eine Chrome-Erweiterung, die von https://www.bluestatic.org entwickelt wurde, und ihr Hauptmerkmal ist "Highlight your commits on buildbot pages.".
Erweiterungsscreenshots
Highlight Me in Buildbot-Erweiterungs-CRX-Datei herunterladen
Laden Sie Highlight Me in Buildbot-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Highlight Me in Buildbot |
ID | fkkgaddlippjidimcfbpllllclgnikdb |
Offizielle URL | https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb |
Beschreibung | Highlight your commits on buildbot pages. |
Dateigröße | 38.77 KB |
Installationsanzahl | 186 |
Aktuelle Version | 1.4 |
Letztes Update | 2013-05-01 |
Veröffentlichungsdatum | 2013-05-01 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://www.bluestatic.org |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | http://build.chromium.org/ |
Unterstützte Sprachen | 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" } |