Testock Plugin

Upload your exam solutions in no-time

Co to jest Testock Plugin?

Testock Plugin to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Upload your exam solutions in no-time”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Testock Plugin

Pobierz pliki rozszerzeń Testock Plugin 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

                        Technion student? Use this plugin to share scans of your solutions to exams in no time. Every time you view your scan in the grades website, you can tap the Testock plugin and be redirected to Testock to upload the scan with just a drag & drop. And remember, Sharing is Caring.                    

Podstawowe informacje o rozszerzeniu

Nazwa Testock Plugin Testock Plugin
ID mfoagkijioojiljhoobpnldbjjpncmmn
Oficjalny URL https://chromewebstore.google.com/detail/testock-plugin/mfoagkijioojiljhoobpnldbjjpncmmn
Opis Upload your exam solutions in no-time
Rozmiar pliku 18.32 KB
Liczba instalacji 43
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2019-06-17
Data Publikacji 2019-06-17
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://testock.tk/
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Testock Plugin",
    "version": "1.2",
    "description": "Upload your exam solutions in no-time",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/grades.technion.ac.il\/content.aspx*"
            ],
            "run_at": "document_idle",
            "js": [
                "course.js"
            ]
        },
        {
            "matches": [
                "https:\/\/grades.technion.ac.il\/scanexam.ashx*"
            ],
            "run_at": "document_idle",
            "js": [
                "scan.js"
            ]
        },
        {
            "matches": [
                "https:\/\/testock.tk\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "hide.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/testock16.png",
            "32": "images\/testock32.png",
            "48": "images\/testock48.png",
            "128": "images\/testock128.png"
        }
    },
    "icons": {
        "16": "images\/testock16.png",
        "32": "images\/testock32.png",
        "48": "images\/testock48.png",
        "128": "images\/testock128.png"
    },
    "manifest_version": 2
}