Codecademy SCT Viewer
Displays an exercise's SCT
ما هو Codecademy SCT Viewer؟
Codecademy SCT Viewer هو إضافة Chrome تم تطويرها بواسطة Alex Craig، والميزة الرئيسية لها هي "Displays an exercise's SCT".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Codecademy SCT Viewer
قم بتنزيل ملفات الامتداد Codecademy SCT Viewer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Updates all CC exercises to include a 'Show SCT' button which displays that courses submission correction test.
معلومات أساسية عن التمديد
الاسم | Codecademy SCT Viewer |
ID | aomhngakklnijmbfboppjgmfpibogbga |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/codecademy-sct-viewer/aomhngakklnijmbfboppjgmfpibogbga |
الوصف | Displays an exercise's SCT |
حجم الملف | 357 KB |
عدد التثبيتات | 21 |
النسخة الحالية | 1.1.1 |
آخر تحديث | 2015-12-23 |
تاريخ النشر | 2015-12-23 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | Alex Craig |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/A-J-C/CodecademyUpdates/blob/master/Code/SCTViewer.md |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Codecademy SCT Viewer", "description": "Displays an exercise's SCT", "version": "1.1.1", "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "permissions": [ "http:\/\/codecademy.com\/" ], "content_scripts": [ { "all_frames": true, "js": [ "jquery.min.js", "viewer.js" ], "matches": [ "http:\/\/www.codecademy.com\/*\/courses\/*", "https:\/\/www.codecademy.com\/*\/courses\/*", "http:\/\/www.codecademy.com\/courses\/*", "https:\/\/www.codecademy.com\/courses\/*" ] } ] } |