GitHub Version Tags

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

Co je GitHub Version Tags?

GitHub Version Tags je rozšíření Chrome vyvinuté joeyespo, a jeho hlavní funkcí je „Displays the latest version of a project next to the repo name on GitHub.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření GitHub Version Tags

Stáhněte si soubory rozšíření GitHub Version Tags 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í

                        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                    

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

Název GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
Oficiální URL https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Popis Displays the latest version of a project next to the repo name on GitHub.
Velikost souboru 38.62 KB
Počet instalací 126
Aktuální Verze 1.1.0
Poslední Aktualizace 2017-10-01
Datum Vydání 2017-10-01
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář joeyespo
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://github.com/joeyespo/github-version-tags
URL Stránky Nápovědy http://github.com/joeyespo/github-version-tags/issues
Podporované Jazyky 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\/*"
    ]
}