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」です。
拡張機能のスクリーンショット
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 |
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" ] } |