HighVocab: Vocabulary Builder

HighVocab vocabulary builder: Save words and phrases, highlight while browsing, rephrase sentences, play flashcards and quizzes.
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",
  "name": "HighVocab: Vocabulary Builder",
  "version": "1.5.18",
  "manifest_version": 3,
  "description": "HighVocab vocabulary builder: Save words and phrases, highlight while browsing, rephrase sentences, play flashcards and quizzes.",
  "icons": {
    "512": "logo.png"
  },
  "content_scripts": [
    {
      "js": [
        "static/js/content.js"
      ],
      "css": [
        "static/css/content.css"
      ],
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://www.youtube.com/*",
        "*://netflix.com/*",
        "*://docs.google.com/*",
        "*://drive.google.com/*",
        "*://calendar.google.com/*",
        "*://photos.google.com/*",
        "*://meet.google.com/*",
        "*://onedrive.live.com/*",
        "*://www.paypal.com/*",
        "*://bankofamerica.com/*",
        "*://chase.com/*",
        "*://wellsfargo.com/*",
        "*://citibank.com/*",
        "*://americanexpress.com/*",
        "*://www.ebay.com/*",
        "*://www.alibaba.com/*",
        "*://www.etsy.com/*",
        "*://www.hulu.com/*",
        "*://www.spotify.com/*",
        "*://www.disneyplus.com/*",
        "*://www.hbomax.com/*",
        "*://www.primevideo.com/*",
        "*://www.instagram.com/*",
        "*://www.snapchat.com/*",
        "*://www.tiktok.com/*",
        "*://www.pinterest.com/*",
        "*://www.highvocab.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "High Vocab",
    "default_popup": "popup.html"
  }
}