Learn Issues
A chrome browser extension to show open github issues for the current Learn.co lesson
O que é Learn Issues?
Learn Issues é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "A chrome browser extension to show open github issues for the current Learn.co lesson".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Learn Issues
Baixe arquivos de extensão Learn Issues no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Learn Issues |
ID | jlngcabipfijndiahbnodbgepolahdin |
URL Oficial | https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin |
Descrição | A chrome browser extension to show open github issues for the current Learn.co lesson |
Tamanho do Arquivo | 137 KB |
Contagem de Instalações | 36 |
Versão Atual | 0.0.1 |
Última Atualização | 2020-01-04 |
Data de Publicação | 2020-01-04 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/arye-dov-eidelman/learn-issues-extension |
URL da Página de Ajuda | https://github.com/arye-dov-eidelman/learn-issues-extension |
Idiomas Suportados | 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" ] } |