Pinterest AI Helper

Pinterest AI Helper

Your AI assistant that helps you create Pins effortlessly

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pinterest AI Helper",
  "description": "Your AI assistant that helps you create Pins effortlessly",
  "version": "0.4",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "host_permissions": [],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "assets/icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://*.pinterest.com/pin-creation-tool/*",
        "https://*.pinterest.com/idea-ads-tool/*",
        "https://*.pinterest.com.au/pin-creation-tool/*",
        "https://*.pinterest.com.au/idea-ads-tool/*",
        "https://*.pinterest.ca/pin-creation-tool/*",
        "https://*.pinterest.ca/idea-ads-tool/*",
        "https://*.pinterest.co.uk/pin-creation-tool/*",
        "https://*.pinterest.co.uk/idea-ads-tool/*"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  }
}