Udemy tests: immediate single answer check.

Udemy tests: immediate single answer check.

Check correct answer immediately for any single question, persist and sync the progress.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Udemy tests: immediate single answer check.",
  "short_name": "Udemy practice tests with immediate single answer checking.",
  "version": "0.0.7",
  "manifest_version": 3,
  "description": "Check correct answer immediately for any single question, persist and sync the progress.",
  "homepage_url": "https://github.com/santriseus/review-mode-for-udemy-tests",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    },
    "default_title": "Review mode for Udemy practice tests.",
    "default_popup": "src/popup/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.udemy.com/*/result/*"
      ],
      "js": [
        "src/inject/inject.js"
      ],
      "css": [
        "src/inject/inject.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage"
  ]
}