Github Issue Reactions

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

Github Issue Reactionsとは何ですか?

Github Issue ReactionsはLasse Norfeldtによって開発されたChromeの拡張機能で、その主な機能は「List a link of reactions on a github issue and pull request page」です。

拡張機能のスクリーンショット

screenshot

Github Issue Reactions拡張機能のCRXファイルをダウンロード

Github Issue Reactions拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Github Issue Reactions Github Issue Reactions
ID enekincdenmmbpgkbhflknhaphpajnfd
公式URL https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd
説明 List a link of reactions on a github issue and pull request page
ファイルサイズ 74.39 KB
インストール数 1,053
現在のバージョン 2.4.4
最終更新日 2023-06-18
公開日 2022-01-10
評価 4.33/5 合計 3 レビュー
開発者 Lasse Norfeldt
Eメール [email protected]
支払い方法 free
対応言語 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\/"
    ]
}