Prompt Manager

Prompt Manager

Never lose your prompts again! The easiest way to manage and re-use all your prompts and prompt templates for ChatGPT, Midjourney,…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Prompt Manager",
  "version": "0.0.5",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png",
    "128": "icons/icon128.png"
  },
  "action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content.tsx-loader-fb0004d7.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "icons/chatgpt.png",
        "icons/icon128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "https://*/*"
      ],
      "resources": [
        "assets/home-helpers-2ede6f96.js",
        "assets/get-url-8e9304b9.js",
        "assets/content.tsx-edd90096.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "content_security_policy": {},
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "alarms"
  ],
  "commands": {
    "sample_command": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      },
      "description": "Sample key command"
    }
  }
}