Font Finder

Font Finder

Font finder for images, texts and websites to check Font Family, size, height

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "default_locale": "en",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "version": "0.2",
  "manifest_version": 3,
  "action": {
    "default_title": "Font Finder",
    "default_icon": "icons/icon128v2.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/icon16v2.png",
    "48": "icons/icon48v2.png",
    "128": "icons/icon128v2.png"
  },
  "author": "Rahul"
}