Codecademy SCT Viewer
Displays an exercise's SCT
什麼是Codecademy SCT Viewer?
Codecademy SCT Viewer是由Alex Craig開發的Chrome擴展程式,該擴展的主要功能是“Displays an exercise's SCT”。
擴展截圖
下載Codecademy SCT Viewer擴展crx文件
下載Codecademy SCT Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Updates all CC exercises to include a 'Show SCT' button which displays that courses submission correction test.
擴展基本資訊
名稱 | Codecademy SCT Viewer |
ID | aomhngakklnijmbfboppjgmfpibogbga |
官方網址 | 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\/*" ] } ] } |