GitHub Version Tags

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

Hvad er GitHub Version Tags?

GitHub Version Tags er en Chrome-udvidelse udviklet af joeyespo, og dens hovedfunktion er "Displays the latest version of a project next to the repo name on GitHub.".

Udvidelsesskærmbilleder

screenshot

Download GitHub Version Tags-udvidelses-CRX-fil

Download GitHub Version Tags-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
Officiel URL https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Beskrivelse Displays the latest version of a project next to the repo name on GitHub.
Filstørrelse 38.62 KB
Antal Installationer 126
Nuværende Version 1.1.0
Senest Opdateret 2017-10-01
Udgivelsesdato 2017-10-01
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler joeyespo
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://github.com/joeyespo/github-version-tags
Hjælpeside-URL http://github.com/joeyespo/github-version-tags/issues
Understøttede Sprog 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\/*"
    ]
}