GitHub Version Tags

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

Apa itu GitHub Version Tags?

GitHub Version Tags adalah ekstensi Chrome yang dikembangkan oleh joeyespo, dan fitur utamanya adalah "Displays the latest version of a project next to the repo name on GitHub.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GitHub Version Tags

Unduh file ekstensi GitHub Version Tags dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
URL Resmi https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Deskripsi Displays the latest version of a project next to the repo name on GitHub.
Ukuran File 38.62 KB
Jumlah Instalasi 126
Versi Saat Ini 1.1.0
Terakhir Diperbarui 2017-10-01
Tanggal Publikasi 2017-10-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang joeyespo
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://github.com/joeyespo/github-version-tags
URL Halaman Bantuan http://github.com/joeyespo/github-version-tags/issues
Bahasa yang Didukung 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\/*"
    ]
}