Velocity Scores for waffle.io

Enable Velocity Scores (Story Points) for waffle.io, so you can estimate the amount of work for each issue

Cos'è Velocity Scores for waffle.io?

Velocity Scores for waffle.io è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Enable Velocity Scores (Story Points) for waffle.io, so you can estimate the amount of work for each issue".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Velocity Scores for waffle.io

Scarica i file di estensione Velocity Scores for waffle.io 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

                        A chrome extension of Velocity Scores for waffle.io, ported from https://gist.github.com/jhubert/8eec558ab8cea9fd4aaa which renders velocity scores based on the content of the GitHub issue title.                    

Informazioni di Base sull'Estensione

Nome Velocity Scores for waffle.io Velocity Scores for waffle.io
ID pffhdclphfnbdcdglcclnnlcjnofjggp
URL Ufficiale https://chromewebstore.google.com/detail/velocity-scores-for-waffl/pffhdclphfnbdcdglcclnnlcjnofjggp
Descrizione Enable Velocity Scores (Story Points) for waffle.io, so you can estimate the amount of work for each issue
Dimensione del File 45.79 KB
Conteggio Installazioni 19
Versione Corrente 1.1
Ultimo Aggiornamento 2014-07-29
Data di Pubblicazione 2014-07-28
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rockerhieu/waffle.io-velocity-scores
URL della Pagina di Aiuto https://github.com/rockerhieu/waffle.io-velocity-scores/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Velocity Scores for waffle.io",
    "description": "Enable Velocity Scores (Story Points) for waffle.io, so you can estimate the amount of work for each issue",
    "version": "1.1",
    "icons": {
        "128": "images\/icon.png"
    },
    "permissions": [
        "https:\/\/waffle.io\/*",
        "http:\/\/waffle.io\/*"
    ],
    "content_scripts": [
        {
            "css": [
                "css\/style.css"
            ],
            "js": [
                "js\/jquery-1.9.1.min.js",
                "js\/content.js"
            ],
            "matches": [
                "https:\/\/waffle.io\/*",
                "http:\/\/waffle.io\/*"
            ],
            "run_at": "document_start"
        }
    ]
}