Testock Plugin

Upload your exam solutions in no-time

Testock Plugin란 무엇입니까?

Testock Plugin은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Upload your exam solutions in no-time"입니다.

확장 프로그램 스크린샷

screenshot

Testock Plugin 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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