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 |
| 公式URL | 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 |
| Eメール | [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"
]
} | |