Dalle3 Tools

Dalle3 Tools

ChatGPT Plus Dalle 3 Productivty Tools. Notification, Download All, Retrieve Image Prompt

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Dalle3 Tools",
  "version": "1.5.0",
  "description": "ChatGPT Plus Dalle 3 Productivty Tools. Notification, Download All, Retrieve Image Prompt ",
  "action": {
    "default_icon": "./assets/icon-128.png",
    "default_popup": "./dist/popup/index.html"
  },
  "options_ui": {
    "page": "./dist/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "icons": {
    "16": "./assets/icon-128.png",
    "48": "./assets/icon-128.png",
    "128": "./assets/icon-128.png"
  },
  "permissions": [
    "",
    "scripting",
    "notifications",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://chatgpt.com/*",
    "https://dalle-creator-development.s3.ap-southeast-1.amazonaws.com/*",
    "https://dalle-creator-production.s3.ap-southeast-1.amazonaws.com/*",
    "https://dalle-creator.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://chatgpt.com/*"
      ],
      "css": [
        "dist/contentScripts/style.css"
      ],
      "js": [
        "dist/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css",
        "dist/sidebar/index.html"
      ],
      "matches": [
        "https://chatgpt.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; connect-src: https://dalle-creator-production.s3.ap-southeast-1.amazonaws.com https://dalle-creator-development.s3.ap-southeast-1.amazonaws.com 'self';"
  },
  "commands": {
    "Ctrl+Shift+X": {
      "suggested_key": {
        "default": "Ctrl+Shift+X",
        "mac": "Command+Shift+X"
      },
      "description": "Command+Shift+X."
    }
  }
}