Wordtabb

Wordtabb

Learn new words with ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wordtabb",
  "description": "Learn new words with ease.",
  "version": "0.1.7",
  "icons": {
    "16": "/icons/16.png",
    "38": "/icons/38.png",
    "48": "/icons/48.png",
    "128": "/icons/128.png"
  },
  "background": {
    "service_worker": "/background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ],
      "css": [
        "popcuk.css"
      ]
    }
  ],
  "chrome_url_overrides": {
    "newtab": "override.html"
  }
}