Learn Issues

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

什么是Learn Issues?

Learn Issues是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“A chrome browser extension to show open github issues for the current Learn.co lesson”。

扩展截图

screenshot

下载Learn Issues扩展crx文件

下载Learn Issues扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Learn Issues Learn Issues
ID jlngcabipfijndiahbnodbgepolahdin
官方URL https://chromewebstore.google.com/detail/learn-issues/jlngcabipfijndiahbnodbgepolahdin
简介 A chrome browser extension to show open github issues for the current Learn.co lesson
文件大小 137 KB
安装次数 36
当前版本 0.0.1
更新时间 2020-01-04
上架时间 2020-01-04
评分 5.00/5 共1次评分
开发者 Unknown
付费类型 free
扩展官网 https://github.com/arye-dov-eidelman/learn-issues-extension
帮助页面URL https://github.com/arye-dov-eidelman/learn-issues-extension
支持的语言 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"
    ]
}