Github Issue Reactions
List a link of reactions on a github issue and pull request page
Wat is Github Issue Reactions?
Github Issue Reactions is een Chrome-extensie ontwikkeld door Lasse Norfeldt, en de belangrijkste functie is "List a link of reactions on a github issue and pull request page".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Issue Reactions
Download Github Issue Reactions-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | enekincdenmmbpgkbhflknhaphpajnfd |
Officiële URL | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
Beschrijving | List a link of reactions on a github issue and pull request page |
Bestandsgrootte | 74.39 KB |
Aantal Installaties | 1,053 |
Huidige Versie | 2.4.4 |
Laatst Bijgewerkt | 2023-06-18 |
Publicatiedatum | 2022-01-10 |
Beoordeling | 4.33/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Lasse Norfeldt |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/" ] } |