Learning Suite Mod
This extension modifies the Learning Suite page to make it more friendly.
ما هو Learning Suite Mod؟
Learning Suite Mod هو إضافة Chrome تم تطويرها بواسطة BYU Coding Ninjas، والميزة الرئيسية لها هي "This extension modifies the Learning Suite page to make it more friendly.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Learning Suite Mod
قم بتنزيل ملفات الامتداد Learning Suite Mod بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Tired of those empty drop-down boxes on Learning Suite? Wish you didn't have to go back to the home page to switch classes? This extension adds course links to every page of BYU's Learning Suite. This is by no means a permanent solution, but it will work for now. If you find any bugs or have ideas please let me know in the feedback section.
معلومات أساسية عن التمديد
الاسم | |
ID | mmhploinnaiicaipbigobhhbegichkcf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/learning-suite-mod/mmhploinnaiicaipbigobhhbegichkcf |
الوصف | This extension modifies the Learning Suite page to make it more friendly. |
حجم الملف | 6.23 KB |
عدد التثبيتات | 20 |
النسخة الحالية | 1.2 |
آخر تحديث | 2014-02-14 |
تاريخ النشر | 2014-02-13 |
تقييم | 5.00/5 مجموع تقييمات 7 |
المطور | BYU Coding Ninjas |
نوع الدفع | free |
موقع الإضافة | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
عنوان صفحة المساعدة | https://groups.google.com/forum/#!forum/byu-coding-ninjas |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Learning Suite Mod", "description": "This extension modifies the Learning Suite page to make it more friendly.", "version": "1.2", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/learningsuite.byu.edu\/student,top*" ], "js": [ "save.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/learningsuite.byu.edu\/*" ], "js": [ "load.js" ], "run_at": "document_end" } ] } |