GitHub Version Tags

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

Was ist GitHub Version Tags?

GitHub Version Tags ist eine Chrome-Erweiterung, die von joeyespo entwickelt wurde, und ihr Hauptmerkmal ist "Displays the latest version of a project next to the repo name on GitHub.".

Erweiterungsscreenshots

screenshot

GitHub Version Tags-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Version Tags-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
Offizielle URL https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Beschreibung Displays the latest version of a project next to the repo name on GitHub.
Dateigröße 38.62 KB
Installationsanzahl 126
Aktuelle Version 1.1.0
Letztes Update 2017-10-01
Veröffentlichungsdatum 2017-10-01
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler joeyespo
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://github.com/joeyespo/github-version-tags
Hilfeseite URL http://github.com/joeyespo/github-version-tags/issues
Unterstützte Sprachen 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\/*"
    ]
}