GenAlt - Generate AI Alternate Text

GenAlt - Generate AI Alternate Text

GenAlt generates descriptive alternate text of images online for those who need them!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.7.7",
  "name": "GenAlt - Generate AI Alternate Text",
  "description": "GenAlt generates descriptive alternate text of images online for those who need them!",
  "icons": {
    "128": "images/logo_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "altify.bundle.js"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup/public/index.html",
    "default_title": "GenAlt"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "usage.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}