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
Eメール [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\/*"
    ]
}