POCU Proctor

POCU Proctor

POCU Proctorคืออะไร?

POCU Proctor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย POCU และคุณลักษณะหลักของมันคือ "POCU Proctor"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย POCU Proctor

ดาวน์โหลดไฟล์ส่วนขยาย POCU Proctor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        POCU Proctor

This extension enables POCU to view your screen, and collect webcam and audio feeds when you take an online examination on POCU - https://test.pocu.academy. We only collect this information on pocu.academy, and we do not have access to your screen, webcam and audio feeds if you are not on pocu.academy domain.

POCU collects the student's screen, webcam and audio feeds to detect plagiarism or cheating during an online exam.

By installing this extension, you are giving POCU permission to view your screen, and collect webcam and audio feeds during an examination.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ POCU Proctor POCU Proctor
ID igcpjndghfaebohjdanobonebnejppej
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pocu-proctor/igcpjndghfaebohjdanobonebnejppej
คำอธิบาย POCU Proctor
ขนาดไฟล์ 35.35 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 1.0.0.0
อัปเดตครั้งล่าสุด 2022-01-24
วันที่เผยแพร่ 2020-02-19
คะแนน 3.81/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา POCU
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://pocu.academy/en/Policies/Privacy
ภาษาที่รองรับ en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.0.0",
    "minimum_chrome_version": "93",
    "name": "POCU Proctor",
    "short_name": "POCU Proctor",
    "description": "POCU Proctor",
    "default_locale": "en",
    "action": {
        "default_popup": "index.html",
        "default_title": "New Proctor"
    },
    "icons": {
        "16": "img\/16x16.png",
        "24": "img\/24x24.png",
        "32": "img\/32x32.png",
        "48": "img\/48x48.png",
        "64": "img\/64x64.png",
        "128": "img\/128x128.png",
        "256": "img\/256x256.png",
        "512": "img\/512x512.png"
    },
    "permissions": [
        "system.display",
        "declarativeNetRequest",
        "desktopCapture",
        "storage",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/test.pocu.academy\/Tests\/*",
                "https:\/\/test.pocu.academy\/BetaTests\/*"
            ],
            "js": [
                ".\/js\/content.js"
            ],
            "css": [
                ".\/css\/content.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": ".\/js\/background.js",
        "type": "module"
    },
    "externally_connectable": {
        "matches": [
            "https:\/\/test.pocu.academy\/*"
        ]
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; style-src 'self'; object-src 'self'"
    }
}