Learn Issues

A chrome browser extension to show open github issues for the current Learn.co lesson

Cos'è Learn Issues?

Learn Issues è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "A chrome browser extension to show open github issues for the current Learn.co lesson".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Learn Issues

Scarica i file di estensione Learn Issues in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Learn Issues Learn Issues
ID jlngcabipfijndiahbnodbgepolahdin
URL Ufficiale https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin
Descrizione A chrome browser extension to show open github issues for the current Learn.co lesson
Dimensione del File 137 KB
Conteggio Installazioni 36
Versione Corrente 0.0.1
Ultimo Aggiornamento 2020-01-04
Data di Pubblicazione 2020-01-04
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/arye-dov-eidelman/learn-issues-extension
URL della Pagina di Aiuto https://github.com/arye-dov-eidelman/learn-issues-extension
Lingue Supportate 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"
    ]
}