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 } |