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
扩展基本信息
名称 | 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" ] } |