Github Issue Reactions
List a link of reactions on a github issue and pull request page
Co to jest Github Issue Reactions?
Github Issue Reactions to rozszerzenie Chrome opracowane przez Lasse Norfeldt, a jego główną funkcją jest „List a link of reactions on a github issue and pull request page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github Issue Reactions
Pobierz pliki rozszerzeń Github Issue Reactions w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | enekincdenmmbpgkbhflknhaphpajnfd |
Oficjalny URL | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
Opis | List a link of reactions on a github issue and pull request page |
Rozmiar pliku | 74.39 KB |
Liczba instalacji | 1,053 |
Aktualna Wersja | 2.4.4 |
Ostatnia Aktualizacja | 2023-06-18 |
Data Publikacji | 2022-01-10 |
Ocena | 4.33/5 Łącznie 3 Oceny |
Deweloper | Lasse Norfeldt |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/" ] } |