Testock Plugin
Upload your exam solutions in no-time
Was ist Testock Plugin?
Testock Plugin ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Upload your exam solutions in no-time".
Erweiterungsscreenshots
Testock Plugin-Erweiterungs-CRX-Datei herunterladen
Laden Sie Testock Plugin-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Testock Plugin |
ID | mfoagkijioojiljhoobpnldbjjpncmmn |
Offizielle URL | https://chromewebstore.google.com/detail/testock-plugin/mfoagkijioojiljhoobpnldbjjpncmmn |
Beschreibung | Upload your exam solutions in no-time |
Dateigröße | 18.32 KB |
Installationsanzahl | 43 |
Aktuelle Version | 1.2 |
Letztes Update | 2019-06-17 |
Veröffentlichungsdatum | 2019-06-17 |
Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
Entwickler | Unknown |
Zahlungsart | free |
Erweiterungswebsite | https://testock.tk/ |
Unterstützte Sprachen | 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 } |