Github Issue Reactions

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

What is Github Issue Reactions?

Github Issue Reactions is a Chrome extension developed by Lasse Norfeldt, and its main feature is "List a link of reactions on a github issue and pull request page".

Extension Screenshots

screenshot

Download Github Issue Reactions Extension CRX File

Download Github Issue Reactions extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Github Issue Reactions Github Issue Reactions
ID enekincdenmmbpgkbhflknhaphpajnfd
Official URL https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd
Description List a link of reactions on a github issue and pull request page
File Size 74.39 KB
Installation Count 1,053
Current Version 2.4.4
Last Updated 2023-06-18
Publish Date 2022-01-10
Rating 4.33/5 Total 3 Ratings
Developer Lasse Norfeldt
Email [email protected]
Payment Type free
Supported Languages 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\/"
    ]
}