Dropship - Product Research

Dropship - Product Research

Monitor the sales revenue of e-commerce stores and make informed decisions to discover your next winning product to sell.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dropship - Product Research",
  "version": "2.0.11",
  "manifest_version": 3,
  "description": "Monitor the sales revenue of e-commerce stores and make informed decisions to discover your next winning product to sell.",
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "action": {
    "default_icon": "logo48.png",
    "default_popup": "/adSaver/popup.html",
    "default_title": "Dropship"
  },
  "externally_connectable": {
    "matches": [
      "https://*.dropship.io/*",
      "https://*.dropship.dataforest.tech/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://www.facebook.com/*",
        "https://app-adsaver.prod.dropship.io/*"
      ],
      "js": [
        "/static/js/main.js"
      ]
    },
    {
      "matches": [
        "*://www.facebook.com/*"
      ],
      "js": [
        "/adSaver/config.js",
        "/adSaver/content.js"
      ],
      "css": [
        "/adSaver/content.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/static/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "/adSaver/config.js"
      ],
      "matches": [
        "https://www.facebook.com/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "identity.email",
    "webRequest"
  ],
  "background": {
    "service_worker": "/app/background.js"
  },
  "host_permissions": [
    "https://www.facebook.com/*"
  ]
}