Ehou Quiz

Ehou Quiz

Tiện ích hỗ trợ giải trắc nghiệm cho sinh viên Ehou

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Ehou Quiz",
  "description": "Tiện ích hỗ trợ giải trắc nghiệm cho sinh viên Ehou",
  "version": "2.0.2",
  "icons": {
    "16": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/logo.png",
      "32": "icons/logo.png",
      "48": "icons/logo.png"
    },
    "default_title": "Free Quiz Ehou",
    "default_popup": "index.html"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "sidePanel",
    "activeTab",
    "notifications",
    "tabs"
  ],
  "side_panel": {
    "default_path": "sidepanel/index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/logo.png",
        "icons/yes.png"
      ],
      "matches": [
        "https://learning.ehou.edu.vn/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://learning.ehou.edu.vn/*",
        "http://localhost:32000/*",
        "https://ehouquiz.io.vn/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+Shift+F"
      },
      "description": "Run \"foo\" on the current page."
    }
  }
}