Udemy Q&A Formatter (一問一答 / 1問1答)

Udemy Q&A Formatter (一問一答 / 1問1答)

Make it easy to solve problems of Udemy practice test with Q&A style

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Udemy Q&A Formatter (一問一答 / 1問1答)",
  "description": "Make it easy to solve problems of Udemy practice test with Q&A style",
  "version": "1.0.4",
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "Q.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://udemy.com/course/*/learn/quiz/*/result/*",
        "https://*.udemy.com/course/*/learn/quiz/*/result/*"
      ],
      "js": [
        "ExtPay.js",
        "index.js",
        "highcharts.js"
      ],
      "css": [
        "index.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "graph.png"
      ],
      "matches": [
        "https://*.udemy.com/*"
      ]
    }
  ]
}