Testock Plugin
Upload your exam solutions in no-time
Testock Pluginとは何ですか?
Testock PluginはUnknownによって開発されたChromeの拡張機能で、その主な機能は「Upload your exam solutions in no-time」です。
拡張機能のスクリーンショット
Testock Plugin拡張機能のCRXファイルをダウンロード
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 } |