Learn Issues

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

Co je Learn Issues?

Learn Issues je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „A chrome browser extension to show open github issues for the current Learn.co lesson“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Learn Issues

Stáhněte si soubory rozšíření Learn Issues ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Learn Issues Learn Issues
ID jlngcabipfijndiahbnodbgepolahdin
Oficiální URL https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin
Popis A chrome browser extension to show open github issues for the current Learn.co lesson
Velikost souboru 137 KB
Počet instalací 36
Aktuální Verze 0.0.1
Poslední Aktualizace 2020-01-04
Datum Vydání 2020-01-04
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://github.com/arye-dov-eidelman/learn-issues-extension
URL Stránky Nápovědy https://github.com/arye-dov-eidelman/learn-issues-extension
Podporované Jazyky 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"
    ]
}