Promptalot Helper

Promptalot Helper

A Google Chrome extension that makes it easier to work with Midjourney and Promptalot.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Promptalot Helper",
  "description": "A Google Chrome extension that makes it easier to work with Midjourney and Promptalot.",
  "version": "0.0.48",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png",
      "48": "icons/icon48.png",
      "64": "icons/icon64.png",
      "128": "icons/icon128.png"
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "storage",
    "downloads"
  ],
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "dist/assets/app.css",
        "html/*",
        "js/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://promptalot.com/*",
        "https://discord.com/*",
        "https://midjourney.com/*",
        "https://*.midjourney.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "js/jquery-3.7.0.min.js",
        "js/paLoader.js",
        "js/paPromptalot.js",
        "js/paSettings.js",
        "js/paInterface.js",
        "js/paObserver.js",
        "js/paSwitch.js",
        "js/paControlPanel.js",
        "js/paApp.js",
        "js/paToolbars.js",
        "js/paStats.js",
        "js/paUtils.js"
      ],
      "all_frames": false
    }
  ]
}