Issue Inspector
Preview the most upvoted comments for github issues without scrolling
Issue Inspector là gì?
Issue Inspector là một tiện ích mở rộng Chrome được phát triển bởi Xetera, và tính năng chính của nó là "Preview the most upvoted comments for github issues without scrolling".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Issue Inspector
Tải xuống các tệp mở rộng Issue Inspector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Issue Inspector |
ID | jcekpjkpiblmimjfbejfdkngbmdgaeen |
URL Chính Thức | https://chromewebstore.google.com/detail/issue-inspector/jcekpjkpiblmimjfbejfdkngbmdgaeen |
Mô tả | Preview the most upvoted comments for github issues without scrolling |
Kích Thước Tệp | 29.83 KB |
Số Lần Cài Đặt | 109 |
Phiên Bản Hiện Tại | 3.1.0 |
Cập Nhật Lần Cuối | 2023-01-08 |
Ngày Phát Hành | 2020-03-20 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Xetera |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Xetera/issue-inspector |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |