Examine source code of Tiện ích chụp đáp án E-learning VNPT

Inspect and view changes in Tiện ích chụp đáp án E-learning VNPT source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tiện ích chụp đáp án E-learning VNPT",
  "version": "1.0",
  "description": "Tiện ích chụp đáp án E-learning VNPT.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/icon48.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://elearning.vnpt.vn/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "https://elearning.vnpt.vn/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "libs/html2canvas.min.js",
        "libs/jspdf.umd.min.js",
        "libs/xlsx.min.js",
        "openurl.js"
      ],
      "matches": [
        "https://elearning.vnpt.vn/*"
      ]
    }
  ]
}