WMS Synchronizer

WMS Synchronizer

This tool can synchronize the stock of WMS

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "WMS Synchronizer",
  "description": "This tool can synchronize the stock of WMS",
  "version": "1.0.0",
  "permissions": [
    "*://*/*",
    "background",
    "browsingData",
    "activeTab",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "md5.js",
      "agent.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "worker.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}