Github Issue Reactions
List a link of reactions on a github issue and pull request page
Qu'est-ce que Github Issue Reactions ?
Github Issue Reactions est une extension Chrome développée par Lasse Norfeldt, et sa fonction principale est "List a link of reactions on a github issue and pull request page".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Github Issue Reactions
Téléchargez les fichiers d'extension Github Issue Reactions au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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 Informations de Base sur l'Extension
| Nom | |
| ID | enekincdenmmbpgkbhflknhaphpajnfd |
| URL Officiel | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
| Description | List a link of reactions on a github issue and pull request page |
| Taille du Fichier | 74.39 KB |
| Nombre d'Installations | 1,053 |
| Version Actuelle | 2.4.4 |
| Dernière Mise à Jour | 2023-06-18 |
| Date de Publication | 2022-01-10 |
| Évaluation | 4.33/5 Total 3 Évaluations |
| Développeur | Lasse Norfeldt |
| [email protected] | |
| Type de Paiement | free |
| Langues Prises en Charge | 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\/"
]
} | |