Alt Text Creator with GPT-4 Vision

Alt Text Creator with GPT-4 Vision

Creates alternate text for images using the GPT-4 model from OpenAI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Alt Text Creator with GPT-4 Vision",
  "short_name": "Alt Text Creator",
  "version": "1.1",
  "author": "Corbin Davenport",
  "description": "Creates alternate text for images using the GPT-4 model from OpenAI.",
  "homepage_url": "https://github.com/corbindavenport/alt-text-creator",
  "options_ui": {
    "page": "main.html",
    "open_in_tab": true
  },
  "minimum_chrome_version": "116",
  "permissions": [
    "contextMenus",
    "storage",
    "offscreen",
    "clipboardWrite",
    "notifications"
  ],
  "host_permissions": [
    "https://api.openai.com/*"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "icons": {
    "32": "img/icon_x32.png",
    "48": "img/icon_x48.png",
    "128": "img/icon_x128.png"
  }
}