Highlight Me in Buildbot

Highlight your commits on buildbot pages.

Cos'è Highlight Me in Buildbot?

Highlight Me in Buildbot è un'estensione di Chrome sviluppata da https://www.bluestatic.org, e la sua funzione principale è "Highlight your commits on buildbot pages.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Highlight Me in Buildbot

Scarica i file di estensione Highlight Me in Buildbot in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Highlight Me in Buildbot Highlight Me in Buildbot
ID fkkgaddlippjidimcfbpllllclgnikdb
URL Ufficiale https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb
Descrizione Highlight your commits on buildbot pages.
Dimensione del File 38.77 KB
Conteggio Installazioni 186
Versione Corrente 1.4
Ultimo Aggiornamento 2013-05-01
Data di Pubblicazione 2013-05-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://www.bluestatic.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://build.chromium.org/
Lingue Supportate 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"
}