Happy Barcode Buddy

Happy Barcode Buddy

Your Extension to find EAN, UPC and GTIN for Online Arbitrage & Amazon Reselling

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Happy Barcode Buddy",
  "description": "Your Extension to find EAN, UPC and GTIN for Online Arbitrage & Amazon Reselling",
  "version": "1.0.3",
  "manifest_version": 3,
  "author": "[email protected]",
  "homepage_url": "https://happyarbitrage.de/produkt/happy-barcode-buddy/",
  "action": {},
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "background/dist/background.js"
  },
  "permissions": [
    "activeTab",
    "storage",
    "commands"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup/dist/popup/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "background/dist/content.js"
      ],
      "css": [
        "popup/dist/popup/assets/happy.css"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "commands": {
    "search.sas": {
      "description": "Search barcode on SellerAmp SAS"
    },
    "search.bbp": {
      "description": "Search barcode on BuyBotPro"
    },
    "search.idealo": {
      "description": "Search barcode on Idealo"
    },
    "search.gs": {
      "description": "Search barcode on Google Shopping"
    },
    "search.check24": {
      "description": "Search barcode on CHECK24"
    },
    "search.amazon": {
      "description": "Search barcode on Amazon"
    }
  }
}