Odii

Odii

Extension that allow you to import other E-Commerce platforms products into your Oddi shop

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Odii",
  "description": "__MSG_description__",
  "version": "1.0",
  "manifest_version": 3,
  "icons": {
    "16": "logo192.png",
    "48": "logo192.png",
    "128": "logo192.png"
  },
  "default_locale": "vi",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Open the popup"
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://shopee.vn/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "shopeeScript.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.lazada.vn/*",
        "https://lazada.vn/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "lazadaScript.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://com2.app-dev2.odii.vn/*",
        "https://*.app.odii.asia/*"
      ],
      "css": [],
      "js": [
        "sellerScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "*://shopee.vn/*"
  ]
}