Github Issue Reactions
List a link of reactions on a github issue and pull request page
Apa itu Github Issue Reactions?
Github Issue Reactions adalah ekstensi Chrome yang dikembangkan oleh Lasse Norfeldt, dan fitur utamanya adalah "List a link of reactions on a github issue and pull request page".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Github Issue Reactions
Unduh file ekstensi Github Issue Reactions dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | enekincdenmmbpgkbhflknhaphpajnfd |
URL Resmi | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
Deskripsi | List a link of reactions on a github issue and pull request page |
Ukuran File | 74.39 KB |
Jumlah Instalasi | 1,053 |
Versi Saat Ini | 2.4.4 |
Terakhir Diperbarui | 2023-06-18 |
Tanggal Publikasi | 2022-01-10 |
Penilaian | 4.33/5 Total 3 Penilaian |
Pengembang | Lasse Norfeldt |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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\/" ] } |