Marketplace Buddy

Marketplace Buddy

Create a professional listing from a few words!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Marketplace Buddy",
  "description": "Create a professional listing from a few words!",
  "version": "1.0.0",
  "manifest_version": 3,
  "author": {
    "name": "Mohsin Ali",
    "url": "https://github.com/mohsinaliryk https://mohsinali.dev"
  },
  "background": {
    "service_worker": "js/sw.js"
  },
  "action": {
    "default_title": "Open Marketplace Buddy"
  },
  "icons": {
    "24": "icons/24.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "256": "icons/256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://www.facebook.com/*"
      ],
      "resources": [
        "popup.html",
        "css/popup.css",
        "icons/logo.svg"
      ]
    }
  ],
  "host_permissions": [
    "https://*.openai.com/"
  ]
}