Testock Plugin

Upload your exam solutions in no-time

Hvad er Testock Plugin?

Testock Plugin er en Chrome-udvidelse udviklet af Unknown, og dens hovedfunktion er "Upload your exam solutions in no-time".

Udvidelsesskærmbilleder

screenshot

Download Testock Plugin-udvidelses-CRX-fil

Download Testock Plugin-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Testock Plugin Testock Plugin
ID mfoagkijioojiljhoobpnldbjjpncmmn
Officiel URL https://chromewebstore.google.com/detail/testock-plugin/mfoagkijioojiljhoobpnldbjjpncmmn
Beskrivelse Upload your exam solutions in no-time
Filstørrelse 18.32 KB
Antal Installationer 43
Nuværende Version 1.2
Senest Opdateret 2019-06-17
Udgivelsesdato 2019-06-17
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Unknown
Betalingsmetode free
Udvidelseswebsted https://testock.tk/
Understøttede Sprog 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
}