Jenkins Status Tab

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

Wat is Jenkins Status Tab?

Jenkins Status Tab is een Chrome-extensie ontwikkeld door christianvuerings, en de belangrijkste functie is "Show the status of a Jenkins build in the tab title.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Jenkins Status Tab

Download Jenkins Status Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Show the status of a Jenkins build in the tab.

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

Basisinformatie over de Extensie

Naam Jenkins Status Tab Jenkins Status Tab
ID bpfcpdnjoengdphlnneoilmphaelapnn
Officiële URL https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn
Beschrijving Show the status of a Jenkins build in the tab title.
Bestandsgrootte 30.56 KB
Aantal Installaties 17
Huidige Versie 0.0.1
Laatst Bijgewerkt 2016-11-23
Publicatiedatum 2016-11-23
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar christianvuerings
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/christianvuerings/jenkins-status-tab
Help Pagina-URL https://github.com/christianvuerings/jenkins-status-tab/issues
Ondersteunde Talen 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:\/\/*\/"
    ]
}