Maestro Label Designer Font Finder

Maestro Label Designer Font Finder

Use the fonts installed on your computer in Maestro Label Designer by OnlineLabels.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Maestro Label Designer Font Finder",
  "author": "Online Labels, LLC",
  "description": "Use the fonts installed on your computer in Maestro Label Designer by OnlineLabels.com.",
  "version": "1.0.2",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon48.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.onlinelabels.com/*"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "permissions": [
    "fontSettings"
  ]
}