Learn Issues
A chrome browser extension to show open github issues for the current Learn.co lesson
Learn Issuesคืออะไร?
Learn Issues เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A chrome browser extension to show open github issues for the current Learn.co lesson"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Learn Issues
ดาวน์โหลดไฟล์ส่วนขยาย Learn Issues ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
An extension for the Learn.co website. Adds a banner to the page, showing open issues. When opening a lesson it will check github for any open issues in the current lesson It will then add a banner to the top of the page saying how many issues there are with a link to each one. The banner is color coded based on how many issues are open. None is green, until five is yellow, five and more is red. Notice: Currently the github api requests are rate limited to 60 requests per hour. Sometimes the extension by accident makes two requests, so this may come out to even less page loads before it stops working. This usually won't be an issue with normal usage.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Learn Issues |
ID | jlngcabipfijndiahbnodbgepolahdin |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin |
คำอธิบาย | A chrome browser extension to show open github issues for the current Learn.co lesson |
ขนาดไฟล์ | 137 KB |
จำนวนการติดตั้ง | 36 |
เวอร์ชันปัจจุบัน | 0.0.1 |
อัปเดตครั้งล่าสุด | 2020-01-04 |
วันที่เผยแพร่ | 2020-01-04 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Unknown |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/arye-dov-eidelman/learn-issues-extension |
URL หน้าช่วยเหลือ | https://github.com/arye-dov-eidelman/learn-issues-extension |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Learn Issues", "description": "A chrome browser extension to show open github issues for the current Learn.co lesson", "version": "0.0.1", "content_scripts": [ { "matches": [ "https:\/\/learn.co\/tracks\/*\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "webNavigation" ] } |