Boxtrain

Boxtrain

Helps find and buy products to sell on Amazon

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Boxtrain",
  "action": {},
  "manifest_version": 3,
  "version": "0.7",
  "description": "Helps find and buy products to sell on Amazon",
  "icons": {
    "24": "images/icon-24.png",
    "36": "images/icon-36.png",
    "48": "images/icon-48.png",
    "96": "images/icon-96.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "system.display",
    "contextMenus"
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}