GitHub Version Tags

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

Co to jest GitHub Version Tags?

GitHub Version Tags to rozszerzenie Chrome opracowane przez joeyespo, a jego główną funkcją jest „Displays the latest version of a project next to the repo name on GitHub.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Version Tags

Pobierz pliki rozszerzeń GitHub Version Tags w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
Oficjalny URL https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Opis Displays the latest version of a project next to the repo name on GitHub.
Rozmiar pliku 38.62 KB
Liczba instalacji 126
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2017-10-01
Data Publikacji 2017-10-01
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper joeyespo
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia http://github.com/joeyespo/github-version-tags
Adres URL Strony Pomocy http://github.com/joeyespo/github-version-tags/issues
Obsługiwane Języki 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\/*"
    ]
}