GitHub Version Tags

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

Τι είναι το GitHub Version Tags;

Το GitHub Version Tags είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον joeyespo, και η κύρια λειτουργία του είναι "Displays the latest version of a project next to the repo name on GitHub.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης GitHub Version Tags

Λήψη αρχείων επέκτασης GitHub Version Tags σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
Επίσημο URL https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Περιγραφή Displays the latest version of a project next to the repo name on GitHub.
Μέγεθος Αρχείου 38.62 KB
Αριθμός Εγκαταστάσεων 126
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2017-10-01
Ημερομηνία Δημοσίευσης 2017-10-01
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής joeyespo
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://github.com/joeyespo/github-version-tags
Διεύθυνση URL της Σελίδας Βοήθειας http://github.com/joeyespo/github-version-tags/issues
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}