Shine Commerce

Shine Commerce

Access vital data about almost any online store, including overall store sales, SKU details, new product launches, ads, and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Shine Commerce",
  "description": "Access vital data about almost any online store, including overall store sales, SKU details, new product launches, ads, and more.",
  "version": "2.2.1",
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "16": "/images/icon16.png",
    "32": "/images/icon32.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "/images/icon16_inactive.png",
      "32": "/images/icon32_inactive.png",
      "48": "/images/icon48_inactive.png",
      "128": "/images/icon128_inactive.png"
    }
  },
  "content_scripts": [
    {
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js",
        "js/content_request.js"
      ],
      "css": [
        "styles/extension.css"
      ]
    }
  ],
  "incognito": "not_allowed",
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webNavigation"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.shinecommerce.com/*",
      "*://*.shinecommerce.dev/*",
      "https://local.shinecommerce.dev:8443/*"
    ],
    "accepts_tls_channel_id": true
  }
}