Learn Issues

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

Qu'est-ce que Learn Issues ?

Learn Issues est une extension Chrome développée par Unknown, et sa fonction principale est "A chrome browser extension to show open github issues for the current Learn.co lesson".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Learn Issues

Téléchargez les fichiers d'extension Learn Issues au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Learn Issues Learn Issues
ID jlngcabipfijndiahbnodbgepolahdin
URL Officiel https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin
Description A chrome browser extension to show open github issues for the current Learn.co lesson
Taille du Fichier 137 KB
Nombre d'Installations 36
Version Actuelle 0.0.1
Dernière Mise à Jour 2020-01-04
Date de Publication 2020-01-04
Évaluation 5.00/5 Total 1 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://github.com/arye-dov-eidelman/learn-issues-extension
URL de la Page d'Aide https://github.com/arye-dov-eidelman/learn-issues-extension
Langues Prises en Charge 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"
    ]
}