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" ] } |