SaaS Assistant for ChatGPT

SaaS Assistant for ChatGPT

Use this extension to take the most of ChatGPT and grow your SaaS. Curated by the community, updated every week.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SaaS Assistant for ChatGPT",
  "version": "0.1.2",
  "description": "Use this extension to take the most of ChatGPT and grow your SaaS. Curated by the community, updated every week.",
  "externally_connectable": {
    "matches": [
      "https://chat.openai.com/*"
    ]
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "prompts.js",
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "icons": {
    "48": "icon.png",
    "128": "icon-128.png"
  }
}