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 |
| 官方網址 | 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\/"
]
} | |