AI Images & Prompts Directory

AI Images & Prompts Directory

Organize and search your AI-generated images and prompts across multiple platforms with ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AI Images & Prompts Directory",
  "version": "1.0.1",
  "description": "Organize and search your AI-generated images and prompts across multiple platforms with ease.",
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "js/lib/jquery-3.6.4.min.js",
        "js/storage.js",
        "js/gpt/content.js"
      ]
    },
    {
      "matches": [
        "https://www.midjourney.com/imagine"
      ],
      "js": [
        "js/lib/jquery-3.6.4.min.js",
        "js/storage.js",
        "js/mj/content.js"
      ]
    },
    {
      "matches": [
        "https://app.leonardo.ai/personal-feed"
      ],
      "js": [
        "js/lib/jquery-3.6.4.min.js",
        "js/storage.js",
        "js/leo/content.js"
      ]
    },
    {
      "matches": [
        "https://firefly.adobe.com/favorites"
      ],
      "js": [
        "js/lib/jquery-3.6.4.min.js",
        "js/storage.js",
        "js/firefly/content.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "icon.png"
  },
  "host_permissions": [
    "https://www.midjourney.com/*",
    "https://chat.openai.com/*",
    "https://app.leonardo.ai/*",
    "https://firefly.adobe.com/*"
  ]
}