Label Resizer - FBA Labels to Thermal & Avery

Label Resizer - FBA Labels to Thermal & Avery

Print any Amazon FBA labels (product, shipping, LTL, SPD labels) directly to your thermal printer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Label Resizer - FBA Labels to Thermal & Avery",
  "version": "2.0.30",
  "short_name": "LabelResizer",
  "description": "Print any Amazon FBA labels (product, shipping, LTL, SPD labels) directly to your thermal printer.",
  "icons": {
    "16": "img/logo-small-16.png",
    "24": "img/logo-small-24.png",
    "48": "img/logo-small-48.png",
    "128": "img/logo-small-128.png"
  },
  "background": {
    "service_worker": "bg/background.js"
  },
  "action": {
    "default_icon": {
      "16": "img/logo-small-16.png",
      "24": "img/logo-small-24.png",
      "48": "img/logo-small-48.png",
      "128": "img/logo-small-128.png"
    },
    "default_popup": "popup/popup.html",
    "default_title": "labelresizer.com"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery/jquery.min.js",
        "js/common.js",
        "labelresizer-extension.js"
      ],
      "matches": [
        "*://www.labelresizer.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "js/jquery/jquery.min.js",
        "js/common.js",
        "js/helper.js",
        "feedback.js",
        "amazon-extension.js"
      ],
      "css": [
        "extension.css"
      ],
      "matches": [
        "*://sellercentral.amazon.com/*",
        "*://sellercentral.amazon.com.mx/*",
        "*://sellercentral-europe.amazon.com/*",
        "*://sellercentral.amazon.ca/*",
        "*://sellercentral.amazon.co.uk/*",
        "*://sellercentral.amazon.de/*",
        "*://sellercentral.amazon.fr/*",
        "*://sellercentral.amazon.it/*",
        "*://sellercentral.amazon.es/*",
        "*://sellercentral.amazon.co.jp/*",
        "*://sellercentral.amazon.ae/*",
        "*://sellercentral.amazon.com.au/*",
        "*://sellercentral.amazon.sg/*",
        "*://sellercentral.amazon.in/*",
        "*://sellercentral-japan.amazon.com/*",
        "*://sellercentral.amazon.sa/*",
        "*://sellercentral.amazon.nl/*",
        "*://sellercentral.amazon.pl/*",
        "*://sellercentral.amazon.se/*",
        "*://sellercentral.amazon.com.br/*",
        "*://sellercentral.amazon.com.be/*",
        "*://*.amazonaws.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "js/jquery/jquery.min.js",
        "js/common.js",
        "feedback.js",
        "ups/ups-extension.js"
      ],
      "css": [
        "ups/ups.css",
        "extension.css"
      ],
      "matches": [
        "*://*.ups.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "js/jquery/jquery.min.js",
        "js/common.js",
        "feedback.js",
        "fedex/fedex-extension.js"
      ],
      "css": [
        "fedex/fedex.css",
        "extension.css"
      ],
      "matches": [
        "*://*.fedex.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "js/jquery/jquery.min.js",
        "js/common.js",
        "feedback.js",
        "mercari/mercari-extension.js"
      ],
      "css": [
        "mercari/mercari.css",
        "extension.css"
      ],
      "matches": [
        "*://*.mercari.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "js/jquery/jquery.min.js",
        "js/common.js",
        "js/helper.js",
        "feedback.js",
        "walmart/walmart-extension.js"
      ],
      "css": [
        "walmart/walmart.css",
        "extension.css"
      ],
      "matches": [
        "*://*.walmart.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "storage",
    "notifications",
    "tabs"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}