Learn Issues
A chrome browser extension to show open github issues for the current Learn.co lesson
Wat is Learn Issues?
Learn Issues is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "A chrome browser extension to show open github issues for the current Learn.co lesson".
Extensie Screenshots
Download het CRX-bestand van de extensie Learn Issues
Download Learn Issues-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Learn Issues |
ID | jlngcabipfijndiahbnodbgepolahdin |
Officiële URL | https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin |
Beschrijving | A chrome browser extension to show open github issues for the current Learn.co lesson |
Bestandsgrootte | 137 KB |
Aantal Installaties | 36 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2020-01-04 |
Publicatiedatum | 2020-01-04 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Unknown |
Betalingswijze | free |
Extensiewebsite | https://github.com/arye-dov-eidelman/learn-issues-extension |
Help Pagina-URL | https://github.com/arye-dov-eidelman/learn-issues-extension |
Ondersteunde Talen | 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" ] } |