ChatGPT Prompts Provider

ChatGPT Prompts Provider

Discover, share, import, and use the best prompts for ChatGPT & save your chat history locally (formerly ChatGPT History)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "2.4.9",
  "permissions": [
    "storage",
    "unlimitedStorage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/chat*"
      ],
      "js": [
        "content-scripts/utility.js",
        "content-scripts/translate.js",
        "content-scripts/scraperv2.js",
        "content-scripts/historyv2.js",
        "content-scripts/prompt-inject.js",
        "content-scripts/export.js",
        "content-scripts/export-inject.js",
        "content-scripts/themes.js",
        "external-js/html2canvas.js",
        "external-js/jspdf.umd.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://www.reddit.com/r/ChatGPTPromptGenius/submit*"
      ],
      "js": [
        "content-scripts/reddit/submit.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://www.reddit.com/r/ChatGPTPromptGenius/*"
      ],
      "js": [
        "content-scripts/reddit/savePrompt.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content-scripts/*",
        "themes/*",
        "external-js/*",
        "_locales/*"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ],
  "action": {
    "default-title": "ChatGPT Prompts Provider"
  },
  "default_locale": "en",
  "icons": {
    "16": "icons/16x16.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}