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 |
官方網址 | 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" } } |