Github Issue Reactions
List a link of reactions on a github issue and pull request page
什么是Github Issue Reactions?
Github Issue Reactions是由Lasse Norfeldt开发的Chrome扩展程序,该扩展的主要功能是“List a link of reactions on a github issue and pull request page”。
扩展截图
下载Github Issue Reactions扩展crx文件
下载Github Issue Reactions扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | enekincdenmmbpgkbhflknhaphpajnfd |
官方URL | https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd |
简介 | List a link of reactions on a github issue and pull request page |
文件大小 | 74.39 KB |
安装次数 | 1,053 |
当前版本 | 2.4.4 |
更新时间 | 2023-06-18 |
上架时间 | 2022-01-10 |
评分 | 4.33/5 共3次评分 |
开发者 | Lasse Norfeldt |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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\/" ] } |