Github Issue Reactions
List a link of reactions on a github issue and pull request page
Cos'è Github Issue Reactions?
Github Issue Reactions è un'estensione di Chrome sviluppata da Lasse Norfeldt, e la sua funzione principale è "List a link of reactions on a github issue and pull request page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Issue Reactions
Scarica i file di estensione Github Issue Reactions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | enekincdenmmbpgkbhflknhaphpajnfd |
URL Ufficiale | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
Descrizione | List a link of reactions on a github issue and pull request page |
Dimensione del File | 74.39 KB |
Conteggio Installazioni | 1,053 |
Versione Corrente | 2.4.4 |
Ultimo Aggiornamento | 2023-06-18 |
Data di Pubblicazione | 2022-01-10 |
Valutazione | 4.33/5 Totale 3 Valutazioni |
Sviluppatore | Lasse Norfeldt |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/" ] } |