GitHub Version Tags

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

什么是GitHub Version Tags?

GitHub Version Tags是由joeyespo开发的Chrome扩展程序,该扩展的主要功能是“Displays the latest version of a project next to the repo name on GitHub.”。

扩展截图

screenshot

下载GitHub Version Tags扩展crx文件

下载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\/*"
    ]
}