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 拡張機能の基本情報
| 名前 | |
| 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"
}
} | |