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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Martin Galovic และคุณลักษณะหลักของมันคือ "Click the magic button in the bottom-right corner to find the solution to a Github Issue instantly."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Issues Instant Solutions
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |