Github Issue Reactions
List a link of reactions on a github issue and pull request page
Hvad er Github Issue Reactions?
Github Issue Reactions er en Chrome-udvidelse udviklet af Lasse Norfeldt, og dens hovedfunktion er "List a link of reactions on a github issue and pull request page".
Udvidelsesskærmbilleder
Download Github Issue Reactions-udvidelses-CRX-fil
Download Github Issue Reactions-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
| Navn | |
| ID | enekincdenmmbpgkbhflknhaphpajnfd |
| Officiel URL | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
| Beskrivelse | List a link of reactions on a github issue and pull request page |
| Filstørrelse | 74.39 KB |
| Antal Installationer | 1,053 |
| Nuværende Version | 2.4.4 |
| Senest Opdateret | 2023-06-18 |
| Udgivelsesdato | 2022-01-10 |
| Bedømmelse | 4.33/5 Samlet 3 Bedømmelser |
| Udvikler | Lasse Norfeldt |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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\/"
]
} | |