Learn Issues
A chrome browser extension to show open github issues for the current Learn.co lesson
ما هو Learn Issues؟
Learn Issues هو إضافة Chrome تم تطويرها بواسطة Unknown، والميزة الرئيسية لها هي "A chrome browser extension to show open github issues for the current Learn.co lesson".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Learn Issues
قم بتنزيل ملفات الامتداد Learn Issues بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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 |
عنوان صفحة المساعدة | 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" ] } |