Generative Prompts

Generative Prompts

An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Generative Prompts",
  "action": {},
  "manifest_version": 3,
  "version": "1.0.7",
  "description": "An extension for displaying entries from the Awesome ChatGPT Prompts repository and featuring a prompt generator.",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "host_permissions": [
    "https://raw.githubusercontent.com/f/awesome-chatgpt-prompts/main/prompts.csv",
    "https://merve-chatgpt-prompt-generator-v12.hf.space/run/predict"
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.main.jsx-e74a00a6-9976c30b.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "css": [
        "assets/main-2ce0ebe1.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "resources": [
        "assets/main.jsx-e74a00a6.js"
      ],
      "use_dynamic_url": true
    }
  ]
}