WhatFont - What html font

WhatFont - What html font

WhatFont helps you identify the font on a web page, html font size, color, font family

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_EXTENSION_NAME__",
  "short_name": "__MSG_EXTENSION_SHORT_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "default_locale": "en",
  "version": "0.0.7",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js",
        "html2canvas.min.js"
      ]
    }
  ],
  "action": {
    "default_icon": "img/icon48.png"
  },
  "permissions": [],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  },
  "background": {
    "service_worker": "bundle.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "wf.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}