Issue Inspector
Preview the most upvoted comments for github issues without scrolling
Issue Inspectorคืออะไร?
Issue Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Xetera และคุณลักษณะหลักของมันคือ "Preview the most upvoted comments for github issues without scrolling"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Issue Inspector
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Issue Inspector |
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 |
อีเมล | [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" ] } |