Pixis AI

Pixis AI

Make efficient ad campaigns across multiple platforms like FB & Google to boost your ROI, using the Pixis AI plug-in

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Make efficient ad campaigns across multiple platforms like FB & Google to boost your ROI, using the Pixis AI plug-in",
  "version": "2.0.24",
  "manifest_version": 3,
  "short_name": "Pixis AI",
  "name": "Pixis AI",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "Pixis AI",
    "default_icon": "logo_16x16.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "logo_16x16.png",
    "48": "logo_48x48.png",
    "128": "logo_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/adsmanager/*",
        "https://*.ui.ads.microsoft.com/campaign*",
        "https://*.linkedin.com/campaignmanager/*",
        "https://ads.google.com/*",
        "http://localhost:3000/*",
        "https://qa-fb-groups.pyxispm.com/*",
        "https://app-dev.pixis.ai/*",
        "https://app-qa.pixis.ai/*",
        "https://*.displayvideo.google.com/*",
        "https://app.pixis.ai/*",
        "https://ads.tiktok.com/*",
        "https://app.searchads.apple.com/*",
        "https://ads.pinterest.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "https://*.facebook.com/adsmanager/*"
    ]
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}