Jenkins Status Tab

Show the status of a Jenkins build in the tab title.

Co je Jenkins Status Tab?

Jenkins Status Tab je rozšíření Chrome vyvinuté christianvuerings, a jeho hlavní funkcí je „Show the status of a Jenkins build in the tab title.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Jenkins Status Tab

Stáhněte si soubory rozšíření Jenkins Status Tab ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Show the status of a Jenkins build in the tab.

Notes:
 - This plugin automatically enables auto refresh which may cause some heavy data usage.                    

Základní Informace o Rozšíření

Název Jenkins Status Tab Jenkins Status Tab
ID bpfcpdnjoengdphlnneoilmphaelapnn
Oficiální URL https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn
Popis Show the status of a Jenkins build in the tab title.
Velikost souboru 30.56 KB
Počet instalací 17
Aktuální Verze 0.0.1
Poslední Aktualizace 2016-11-23
Datum Vydání 2016-11-23
Hodnocení 1.00/5 Celkem 1 Hodnocení
Vývojář christianvuerings
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/christianvuerings/jenkins-status-tab
URL Stránky Nápovědy https://github.com/christianvuerings/jenkins-status-tab/issues
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jenkins Status Tab",
    "description": "Show the status of a Jenkins build in the tab title.",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "icons.js",
                "execute.js"
            ]
        }
    ],
    "icons": {
        "32": "32.png",
        "64": "64.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_title": "Make this page blue"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/*\/",
        "http:\/\/*\/"
    ]
}