Codecademy SCT Viewer

Displays an exercise's SCT

Co to jest Codecademy SCT Viewer?

Codecademy SCT Viewer to rozszerzenie Chrome opracowane przez Alex Craig, a jego główną funkcją jest „Displays an exercise's SCT”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Codecademy SCT Viewer

Pobierz pliki rozszerzeń Codecademy SCT Viewer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Codecademy SCT Viewer Codecademy SCT Viewer
ID aomhngakklnijmbfboppjgmfpibogbga
Oficjalny URL https://chromewebstore.google.com/detail/codecademy-sct-viewer/aomhngakklnijmbfboppjgmfpibogbga
Opis Displays an exercise's SCT
Rozmiar pliku 357 KB
Liczba instalacji 21
Aktualna Wersja 1.1.1
Ostatnia Aktualizacja 2015-12-23
Data Publikacji 2015-12-23
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Alex Craig
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/A-J-C/CodecademyUpdates/blob/master/Code/SCTViewer.md
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}