Testock Plugin
Upload your exam solutions in no-time
Τι είναι το Testock Plugin;
Το Testock Plugin είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "Upload your exam solutions in no-time".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Testock Plugin
Λήψη αρχείων επέκτασης Testock Plugin σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Testock Plugin |
ID | mfoagkijioojiljhoobpnldbjjpncmmn |
Επίσημο URL | https://chromewebstore.google.com/detail/testock-plugin/mfoagkijioojiljhoobpnldbjjpncmmn |
Περιγραφή | Upload your exam solutions in no-time |
Μέγεθος Αρχείου | 18.32 KB |
Αριθμός Εγκαταστάσεων | 43 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2019-06-17 |
Ημερομηνία Δημοσίευσης | 2019-06-17 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Unknown |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://testock.tk/ |
Υποστηριζόμενες Γλώσσες | 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 } |