Smart Share From eBay

Smart Share From eBay

Find items, share links, and earn commissions as you visit any page on eBay.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "short_name": "__MSG_shortName__",
  "default_locale": "en",
  "version": "1.0.2",
  "incognito": "split",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "SmartShare16.png",
    "48": "SmartShare48.png",
    "128": "SmartShare128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "optional_host_permissions": [
    "https://*/*",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "js": [
        "commissionable-deals.js"
      ],
      "matches": [
        "*://*.ebay.com/deals*",
        "*://*.ebay.ca/deals*"
      ]
    }
  ],
  "action": {},
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; font-src 'self' https://*.ebaystatic.com/; connect-src https://*.ebay.com/ http://*.ebay.com/; img-src 'self' http://*.ebaystatic.com/ http://*.ebayimg.com/ data:"
  },
  "options_page": "options.html"
}