GitHub Version Tags

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

What is GitHub Version Tags?

GitHub Version Tags is a Chrome extension developed by joeyespo, and its main feature is "Displays the latest version of a project next to the repo name on GitHub.".

Extension Screenshots

screenshot

Download GitHub Version Tags Extension CRX File

Download GitHub Version Tags extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
Official URL https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Description Displays the latest version of a project next to the repo name on GitHub.
File Size 38.62 KB
Installation Count 126
Current Version 1.1.0
Last Updated 2017-10-01
Publish Date 2017-10-01
Rating 5.00/5 Total 1 Ratings
Developer joeyespo
Email [email protected]
Payment Type free
Extension Website http://github.com/joeyespo/github-version-tags
Help Page URL http://github.com/joeyespo/github-version-tags/issues
Supported Languages 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\/*"
    ]
}