Vocabulary reminder

Nhắc ý nghĩa các từ vựng trong list. giúp nhớ lâu các từ vựng. Có thể thêm từ vựng vào trực tiếp từ trang web đang sử dụng. Có thể…
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": "Vocabulary reminder",
  "version": "1.0.0",
  "icons": {
    "16": "images/logo-16.png",
    "32": "images/logo-32.png",
    "48": "images/logo-48.png",
    "128": "images/logo-128.png"
  },
  "permissions": [
    "notifications",
    "background",
    "contextMenus",
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "css": [
        "styles/sweetalert2.css"
      ],
      "js": [
        "scripts/sweetalert2.js"
      ]
    }
  ]
}