Learn Issues
A chrome browser extension to show open github issues for the current Learn.co lesson
Learn Issues là gì?
Learn Issues là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "A chrome browser extension to show open github issues for the current Learn.co lesson".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Learn Issues
Tải xuống các tệp mở rộng Learn Issues dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Learn Issues |
ID | jlngcabipfijndiahbnodbgepolahdin |
URL Chính Thức | https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin |
Mô tả | A chrome browser extension to show open github issues for the current Learn.co lesson |
Kích Thước Tệp | 137 KB |
Số Lần Cài Đặt | 36 |
Phiên Bản Hiện Tại | 0.0.1 |
Cập Nhật Lần Cuối | 2020-01-04 |
Ngày Phát Hành | 2020-01-04 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/arye-dov-eidelman/learn-issues-extension |
URL Trang Trợ Giúp | https://github.com/arye-dov-eidelman/learn-issues-extension |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |