Spelling Trainer chrome extension

Spelling Trainer chrome extension

Add words to your spelling practice list with one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Spelling Trainer chrome extension",
  "short_name": "spelly",
  "version": "0.0.1",
  "description": "Add words to your spelling practice list with one click.",
  "icons": {
    "16": "assets/icons/icon16.png",
    "48": "assets/icons/icon-48x48.png",
    "128": "assets/icons/icon-128x128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "action": {
    "default_title": "Login to Spelly",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "utils.js",
    "type": "module"
  }
}