Highlight Me in Buildbot

Highlight your commits on buildbot pages.

Co to jest Highlight Me in Buildbot?

Highlight Me in Buildbot to rozszerzenie Chrome opracowane przez https://www.bluestatic.org, a jego główną funkcją jest „Highlight your commits on buildbot pages.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Highlight Me in Buildbot

Pobierz pliki rozszerzeń Highlight Me in Buildbot w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Highlight Me in Buildbot Highlight Me in Buildbot
ID fkkgaddlippjidimcfbpllllclgnikdb
Oficjalny URL https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb
Opis Highlight your commits on buildbot pages.
Rozmiar pliku 38.77 KB
Liczba instalacji 186
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2013-05-01
Data Publikacji 2013-05-01
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper https://www.bluestatic.org
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://build.chromium.org/
Obsługiwane Języki 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"
}