Bitbucket Lines Changed

Lists total number of lines changed in Bitbucket PRs

Cos'è Bitbucket Lines Changed?

Bitbucket Lines Changed è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Lists total number of lines changed in Bitbucket PRs".

Scarica il file CRX dell'estensione Bitbucket Lines Changed

Scarica i file di estensione Bitbucket Lines Changed 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

                        Adds an overall number of lines added/removed in Bitbucket Pull Requests.                    

Informazioni di Base sull'Estensione

Nome Bitbucket Lines Changed Bitbucket Lines Changed
ID icfabjllcjkbbmflmkinhnpfadjdjdcj
URL Ufficiale https://chromewebstore.google.com/detail/bitbucket-lines-changed/icfabjllcjkbbmflmkinhnpfadjdjdcj
Descrizione Lists total number of lines changed in Bitbucket PRs
Dimensione del File 9.05 KB
Conteggio Installazioni 10
Versione Corrente 0.2
Ultimo Aggiornamento 2018-02-15
Data di Pubblicazione 2018-02-15
Sviluppatore Unknown
Tipo di Pagamento free
Lingue Supportate en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Bitbucket Lines Changed",
    "short_name": "BLC",
    "version": "0.2",
    "manifest_version": 2,
    "description": "Lists total number of lines changed in Bitbucket PRs",
    "homepage_url": "http:\/\/www.mpelletier.net",
    "icons": {
        "32": "images\/icon32.png",
        "48": "images\/icon48.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*\/*\/pull-requests\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "init.js"
            ],
            "run_at": "document_end"
        }
    ]
}