French Word of the Day

French Word of the Day

This extension displays a new French word each day, along with an example sentence using it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "French Word of the Day",
  "author": "Oliver Hamilton",
  "description": "This extension displays a new French word each day, along with an example sentence using it.",
  "version": "1.0",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "externally_connectable": {
    "matches": [
      "https://example.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://example.com/*"
      ],
      "js": [
        "inject.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "firebase/firebase_config.js",
        "firebase/firebase-app.js",
        "firebase/firebase-firestore.js"
      ],
      "matches": [
        "https://example.com/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}