SyncShare

Synchronize and share right answers to Moodle quizzes.

SyncShareคืออะไร?

SyncShare เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Naloaty และคุณลักษณะหลักของมันคือ "Synchronize and share right answers to Moodle quizzes."

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

screenshot
screenshot
screenshot

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

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

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

                        A web extension that allows you to find out the correct answers to Moodle quizzes. 

Usage:
1. Log in to your Moodle system;
2. Start taking any quiz;
3. If someone before you has already attempted the quiz, the magic wand will appear next to the questions. Click on it to see the suggested correct answer and others' submission statistics.                    

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

ชื่อ SyncShare SyncShare
ID lngijbnmdkejbgnkakeiapeppbpaapib
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/syncshare/lngijbnmdkejbgnkakeiapeppbpaapib
คำอธิบาย Synchronize and share right answers to Moodle quizzes.
ขนาดไฟล์ 633 KB
จำนวนการติดตั้ง 53,294
เวอร์ชันปัจจุบัน 1.2.3
อัปเดตครั้งล่าสุด 2024-01-11
วันที่เผยแพร่ 2023-09-26
คะแนน 4.08/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา Naloaty
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://syncshare.naloaty.me/
URL หน้านโยบายความเป็นส่วนตัว https://syncshare.naloaty.me/privacy-policy.html
ภาษาที่รองรับ en,ru
manifest.json
{
    "name": "SyncShare",
    "description": "__MSG_extensionDescription__",
    "version": "1.2.3",
    "homepage_url": "https:\/\/syncshare.naloaty.me\/",
    "author": "Naloaty ",
    "default_locale": "en",
    "icons": {
        "16": "icons\/[email protected]",
        "24": "icons\/[email protected]",
        "32": "icons\/[email protected]",
        "64": "icons\/[email protected]",
        "128": "icons\/[email protected]"
    },
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; img-src data:; connect-src 'self' https:\/\/syncshare.naloaty.me\/api\/ https:;"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/widgets\/context_menu.css"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "action": {
        "default_icon": {
            "16": "icons\/[email protected]",
            "24": "icons\/[email protected]",
            "32": "icons\/[email protected]",
            "64": "icons\/[email protected]",
            "128": "icons\/[email protected]"
        },
        "default_title": "SyncShare",
        "default_popup": "html\/popup\/popup.html",
        "browser_style": true
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*mod\/quiz\/attempt.php*",
                "*mod\/quiz\/review.php*"
            ],
            "js": [
                "js\/commons.js",
                "js\/quiz_attempt.js"
            ],
            "css": [
                "css\/widgets\/context_menu.css"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*mod\/quiz\/summary.php*"
            ],
            "js": [
                "js\/commons.js",
                "js\/quiz_overview.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*mod\/quiz\/view.php*"
            ],
            "js": [
                "js\/commons.js",
                "js\/quiz_board.js"
            ],
            "run_at": "document_idle"
        }
    ]
}