Issue Inspector
Preview the most upvoted comments for github issues without scrolling
什麼是Issue Inspector?
Issue Inspector是由Xetera開發的Chrome擴展程式,該擴展的主要功能是“Preview the most upvoted comments for github issues without scrolling”。
擴展截圖
下載Issue Inspector擴展crx文件
下載Issue Inspector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Instantly find the solution you're looking for in GitHub issues.
Issue Inspector ranks each comment on issues by the reactions. Comments with many +1 and heart are probably solutions so they go at the top.
This project is still a work in production. If you encounter any bugs, feel free to open up a uh... GitHub issue on the repository 擴展基本資訊
| 名稱 | |
| ID | jcekpjkpiblmimjfbejfdkngbmdgaeen |
| 官方網址 | https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen |
| 簡介 | Preview the most upvoted comments for github issues without scrolling |
| 檔案大小 | 29.83 KB |
| 安裝次數 | 109 |
| 目前版本 | 3.1.0 |
| 更新時間 | 2023-01-08 |
| 上架時間 | 2020-03-20 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | Xetera |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/Xetera/issue-inspector |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Issue Inspector",
"description": "Preview the most upvoted comments for github issues without scrolling",
"version": "3.1.0",
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"browser_action": {
"default_icon": "magnifying_glass.png",
"default_popup": "popup.html"
},
"icons": {
"128": "magnifying_glass.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"run_at": "document_end",
"js": [
"js\/content_script.js"
]
}
],
"web_accessible_resources": [
"*.png"
],
"background": {
"scripts": [
"js\/background.js"
]
},
"permissions": [
"webNavigation"
]
} | |