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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}