What Font - find font

What Font - find font

Lets you know what font is used on any website

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "short_name": "__MSG_name__",
  "version": "1.0.0",
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "img/icon-16.png",
      "32": "img/icon-32.png",
      "64": "img/icon-64.png",
      "128": "img/icon-128.png"
    },
    "default_title": "__MSG_name__"
  },
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "64": "img/icon-64.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/libs/jquery.js",
        "js/mainWorker.js",
        "js/libs/html2canvas.min.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "permissions": [
    "scripting",
    "storage",
    "unlimitedStorage",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "options_page": "option.html",
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}