Github Issue Reactions

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

Vad är Github Issue Reactions?

Github Issue Reactions är en Chrome-tillägg utvecklad av Lasse Norfeldt, och dess huvudfunktion är "List a link of reactions on a github issue and pull request page".

Tilläggsskärmbilder

screenshot

Ladda ner Github Issue Reactions-förlängningens CRX-fil

Ladda ner Github Issue Reactions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Github Issue Reactions Github Issue Reactions
ID enekincdenmmbpgkbhflknhaphpajnfd
Officiell webbadress https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd
Beskrivning List a link of reactions on a github issue and pull request page
Filstorlek 74.39 KB
Antal Installationer 1,053
Aktuell Version 2.4.4
Senast Uppdaterad 2023-06-18
Publiceringsdatum 2022-01-10
Betyg 4.33/5 Totalt 3 Betyg
Utvecklare Lasse Norfeldt
E-post [email protected]
Betalningssätt free
Stödda Språk 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\/"
    ]
}