Font Finder & Style Detector

Font Finder & Style Detector

Discover the perfect font effortlessly with our Font Finder & Style Detector extension! Seamlessly integrated into your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Font Finder & Style Detector",
  "description": "Discover the perfect font effortlessly with our Font Finder & Style Detector extension! Seamlessly integrated into your browser.",
  "version": "1.0.0",
  "author": "Next labs",
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "128": "icon128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}