Alt Text Generator for Webflow

Alt Text Generator for Webflow

Big update! Reconfigured the API to get rid of cold starts. What does this mean? Faster alt text generation! Completely redesigned…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Alt Text Generator for Webflow",
  "description": "",
  "version": "2.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "public/icons/icon-primary.png",
    "32": "public/icons/icon-primary.png",
    "48": "public/icons/icon-primary.png",
    "128": "public/icons/icon-primary.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "public/icons/icon-primary.png"
  },
  "options_page": "options.html",
  "devtools_page": "devtools.html",
  "content_scripts": [
    {
      "js": [
        "assets/index.ts-loader-f256a8ff.js"
      ],
      "matches": [
        "http://*.design.webflow.com/*",
        "https://*.design.webflow.com/*"
      ],
      "css": [
        "src/contentScript.css"
      ]
    }
  ],
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "http://*.design.webflow.com/*",
        "https://*.design.webflow.com/*"
      ],
      "resources": [
        "public/icons/icon-primary.png",
        "src/contentScript.css"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "http://*.design.webflow.com/*",
        "https://*.design.webflow.com/*"
      ],
      "resources": [
        "assets/chunk-6ade61e4.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "sidePanel",
    "storage"
  ],
  "host_permissions": [
    "https://alt-text-generator-api-cloudflare.aron-hawkins.workers.dev/*"
  ]
}