Github Issue Reactions

List a link of reactions on a github issue and pull request page

Github Issue Reactions là gì?

Github Issue Reactions là một tiện ích mở rộng Chrome được phát triển bởi Lasse Norfeldt, và tính năng chính của nó là "List a link of reactions on a github issue and pull request page".

Ả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 Issue Reactions

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

                        Use it to get a quick overview of good comments in a long GitHub issue conversation.

Repo to the extension can be found here:
Github at Norfeldt/github-issue-reactions-browser-extension                    

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

Tên Github Issue Reactions Github Issue Reactions
ID enekincdenmmbpgkbhflknhaphpajnfd
URL Chính Thức https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd
Mô tả List a link of reactions on a github issue and pull request page
Kích Thước Tệp 74.39 KB
Số Lần Cài Đặt 1,053
Phiên Bản Hiện Tại 2.4.4
Cập Nhật Lần Cuối 2023-06-18
Ngày Phát Hành 2022-01-10
Đánh Giá 4.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Lasse Norfeldt
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Issue Reactions",
    "version": "2.4.4",
    "description": "List a link of reactions on a github issue and pull request page",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png",
        "256": "icon_256.png"
    },
    "host_permissions": [
        "https:\/\/www.github.com\/",
        "http:\/\/www.github.com\/"
    ]
}