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
官方網址 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"
    ]
}