ROAS monster Chrome Extension

ROAS monster Chrome Extension

ROAS monster Chrome Extension will connect your ROAS monster application data directly into your Facebook Ads Manager.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ROAS monster Chrome Extension",
  "description": "ROAS monster Chrome Extension will connect your ROAS monster application data directly into your Facebook Ads Manager.",
  "version": "2.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "img/logo16.png",
    "32": "img/logo32.png",
    "48": "img/logo48.png",
    "128": "img/logo128.png"
  },
  "options_page": "options.html",
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "img/logo16.png",
      "32": "img/logo32.png",
      "48": "img/logo48.png",
      "128": "img/logo128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://business.facebook.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "img/logo32.png",
        "img/logo48.png"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "https://business.facebook.com/*",
    "https://www.roasmonster.com/*",
    "https://www.app.roasmonster.com/*"
  ]
}