SyncShare

Synchronize and share right answers to Moodle quizzes.

SyncShare란 무엇입니까?

SyncShare은(는) Naloaty에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Synchronize and share right answers to Moodle quizzes."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

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