Testock Plugin

Upload your exam solutions in no-time

Testock Plugin là gì?

Testock Plugin là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Upload your exam solutions in no-time".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Testock Plugin

Tải xuống các tệp mở rộng Testock Plugin dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Testock Plugin Testock Plugin
ID mfoagkijioojiljhoobpnldbjjpncmmn
URL Chính Thức https://chromewebstore.google.com/detail/testock-plugin/mfoagkijioojiljhoobpnldbjjpncmmn
Mô tả Upload your exam solutions in no-time
Kích Thước Tệp 18.32 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2019-06-17
Ngày Phát Hành 2019-06-17
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://testock.tk/
Ngôn Ngữ Được Hỗ Trợ 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
}