GitHub Version Tags

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

GitHub Version Tags là gì?

GitHub Version Tags là một tiện ích mở rộng Chrome được phát triển bởi joeyespo, và tính năng chính của nó là "Displays the latest version of a project next to the repo name on GitHub.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Version Tags

Tải xuống các tệp mở rộng GitHub Version Tags dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
URL Chính Thức https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
Mô tả Displays the latest version of a project next to the repo name on GitHub.
Kích Thước Tệp 38.62 KB
Số Lần Cài Đặt 126
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2017-10-01
Ngày Phát Hành 2017-10-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển joeyespo
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/joeyespo/github-version-tags
URL Trang Trợ Giúp http://github.com/joeyespo/github-version-tags/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}