Codecademy SCT Viewer

Displays an exercise's SCT

What is Codecademy SCT Viewer?

Codecademy SCT Viewer is a Chrome extension developed by Alex Craig, and its main feature is "Displays an exercise's SCT".

Extension Screenshots

screenshot
screenshot

Download Codecademy SCT Viewer Extension CRX File

Download Codecademy SCT Viewer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Updates all CC exercises to include a 'Show SCT' button which displays that courses submission correction test.                    

Extension Basic Information

Name Codecademy SCT Viewer Codecademy SCT Viewer
ID aomhngakklnijmbfboppjgmfpibogbga
Official URL https://chromewebstore.google.com/detail/codecademy-sct-viewer/aomhngakklnijmbfboppjgmfpibogbga
Description Displays an exercise's SCT
File Size 357 KB
Installation Count 21
Current Version 1.1.1
Last Updated 2015-12-23
Publish Date 2015-12-23
Rating 5.00/5 Total 1 Ratings
Developer Alex Craig
Email [email protected]
Payment Type free
Extension Website https://github.com/A-J-C/CodecademyUpdates/blob/master/Code/SCTViewer.md
Supported Languages 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\/*"
            ]
        }
    ]
}