GitHub Version Tags

Displays the latest version of a project next to the repo name on GitHub.

Cos'è GitHub Version Tags?

GitHub Version Tags è un'estensione di Chrome sviluppata da joeyespo, e la sua funzione principale è "Displays the latest version of a project next to the repo name on GitHub.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GitHub Version Tags

Scarica i file di estensione GitHub Version Tags 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

                        Displays the latest version of a project next to the repo name on GitHub.

Source code is on GitHub http://github.com/joeyespo/github-version-tags                    

Informazioni di Base sull'Estensione

Nome GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
URL Ufficiale https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Descrizione Displays the latest version of a project next to the repo name on GitHub.
Dimensione del File 38.62 KB
Conteggio Installazioni 126
Versione Corrente 1.1.0
Ultimo Aggiornamento 2017-10-01
Data di Pubblicazione 2017-10-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore joeyespo
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione http://github.com/joeyespo/github-version-tags
URL della Pagina di Aiuto http://github.com/joeyespo/github-version-tags/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Version Tags",
    "version": "1.1.0",
    "description": "Displays the latest version of a project next to the repo name on GitHub.",
    "author": "Joe Esposito ",
    "icons": {
        "19": "media\/icon_19.png",
        "38": "media\/icon_38.png",
        "48": "media\/icon_48.png",
        "128": "media\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "vendor\/compare-versions.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/api.github.com\/*"
    ]
}