Facebook Marketplace Repricer

Facebook Marketplace Repricer

This extension helps Sku Grid users to update price & stock on Facebook Marketplace based on supplier’s data at Sku Grid.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Facebook Marketplace Repricer",
  "version": "1.1.6",
  "description": "This extension helps Sku Grid users to update price & stock on Facebook Marketplace based on supplier’s data at Sku Grid.",
  "minimum_chrome_version": "93.0.4577",
  "icons": {
    "16": "img/sg_logo_16.png",
    "19": "img/sg_logo_19.png",
    "32": "img/sg_logo_32.png",
    "48": "img/sg_logo_48.png",
    "64": "img/sg_logo_64.png",
    "128": "img/sg_logo_128.png",
    "256": "img/sg_logo_256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "js/inject.bundle.js"
      ]
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_title": "Sku Grid."
  },
  "permissions": [
    "storage",
    "notifications"
  ],
  "content_security_policy": "default-src 'self'; object-src 'self'; font-src 'self' data:; style-src 'self' 'unsafe-inline'; connect-src 'self' https://fb-api.skuio.com"
}