Learn Issues

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

Was ist Learn Issues?

Learn Issues ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "A chrome browser extension to show open github issues for the current Learn.co lesson".

Erweiterungsscreenshots

screenshot

Learn Issues-Erweiterungs-CRX-Datei herunterladen

Laden Sie Learn Issues-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Learn Issues Learn Issues
ID jlngcabipfijndiahbnodbgepolahdin
Offizielle URL https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin
Beschreibung A chrome browser extension to show open github issues for the current Learn.co lesson
Dateigröße 137 KB
Installationsanzahl 36
Aktuelle Version 0.0.1
Letztes Update 2020-01-04
Veröffentlichungsdatum 2020-01-04
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/arye-dov-eidelman/learn-issues-extension
Hilfeseite URL https://github.com/arye-dov-eidelman/learn-issues-extension
Unterstützte Sprachen 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"
    ]
}