Github Issue Reactions
List a link of reactions on a github issue and pull request page
Was ist Github Issue Reactions?
Github Issue Reactions ist eine Chrome-Erweiterung, die von Lasse Norfeldt entwickelt wurde, und ihr Hauptmerkmal ist "List a link of reactions on a github issue and pull request page".
Erweiterungsscreenshots
Github Issue Reactions-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Issue Reactions-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | |
ID | enekincdenmmbpgkbhflknhaphpajnfd |
Offizielle URL | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
Beschreibung | List a link of reactions on a github issue and pull request page |
Dateigröße | 74.39 KB |
Installationsanzahl | 1,053 |
Aktuelle Version | 2.4.4 |
Letztes Update | 2023-06-18 |
Veröffentlichungsdatum | 2022-01-10 |
Bewertung | 4.33/5 Insgesamt 3 Bewertungen |
Entwickler | Lasse Norfeldt |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/" ] } |