Musa View

Musa View

The Musa Alphabet is another way of writing English

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Musa View",
  "description": "The Musa Alphabet is another way of writing English",
  "version": "1.0",
  "manifest_version": 3,
  "action": {
    "default_icon": {
      "16": "assets/img/musaflag16.png",
      "24": "assets/img/musaflag24.png",
      "32": "assets/img/musaflag32.png"
    },
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_end",
      "css": [
        "font.css"
      ],
      "js": [
        "font.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*",
        "assets/img/*"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}