GitHub Issues Instant Solutions
Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.
什么是GitHub Issues Instant Solutions?
GitHub Issues Instant Solutions是由Martin Galovic开发的Chrome扩展程序,该扩展的主要功能是“Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.”。
扩展截图
下载GitHub Issues Instant Solutions扩展crx文件
下载GitHub Issues Instant Solutions扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Find Github Issue solution instantly — just click "Jump to the solution" button
扩展基本信息
名称 | GitHub Issues Instant Solutions |
ID | efdnmggekpecdpgllnnlehdobkealhem |
官方URL | https://chromewebstore.google.com/detail/github-issues-instant-sol/efdnmggekpecdpgllnnlehdobkealhem |
简介 | Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly. |
文件大小 | 227 KB |
安装次数 | 67 |
当前版本 | 1.0.5 |
更新时间 | 2020-02-29 |
上架时间 | 2020-02-29 |
评分 | 5.00/5 共2次评分 |
开发者 | Martin Galovic |
付费类型 | free |
扩展官网 | https://issues.martingalovic.com |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Issues Instant Solutions", "version": "1.0.5", "description": "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly.", "icons": { "16": "public\/icons\/icon_16.png", "48": "public\/icons\/icon_48.png", "128": "public\/icons\/icon_128.png" }, "background": { "persistent": true, "scripts": [ "public\/background_script.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/www.github.com\/*", "http:\/\/github.com\/*", "http:\/\/www.github.com\/*" ], "css": [ "public\/github_content_styles.css" ], "js": [ "public\/underscore.min.js", "public\/jquery.min.js", "public\/github_content_script.js" ] } ], "permissions": [ "https:\/\/github.com\/*", "https:\/\/www.github.com\/*", "http:\/\/github.com\/*", "http:\/\/www.github.com\/*" ], "browser_action": { "default_icon": "public\/icons\/icon_16.png", "default_popup": "public\/html\/popup.html" } } |