Github compare tags

Adds tags to the compare page of Github.

Github compare tags là gì?

Github compare tags là một tiện ích mở rộng Chrome được phát triển bởi marpo60, và tính năng chính của nó là "Adds tags to the compare page of 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 compare tags

Tải xuống các tệp mở rộng Github compare 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

                        Add into the dropdown of Github compare page the tags of the repositories.                    

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

Tên Github compare tags Github compare tags
ID pjkolicadkdcfgjjoopdpleenckeajkk
URL Chính Thức https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk
Mô tả Adds tags to the compare page of Github.
Kích Thước Tệp 8.43 KB
Số Lần Cài Đặt 62
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2019-06-01
Ngày Phát Hành 2019-06-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển marpo60
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/marpo60/github-compare-tags
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github compare tags",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Adds tags to the compare page of Github.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "src\/hot-reload.js"
        ]
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}