whatfonts - find your font

whatfonts - find your font

show the font when hover

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "whatfonts - find your font",
  "short_name": "whatfonts",
  "description": "show the font when hover",
  "default_locale": "en",
  "version": "0.0.6",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js",
        "html2canvas.min.js"
      ]
    }
  ],
  "action": {
    "default_icon": "img/icon48.png"
  },
  "permissions": [
    "tabs"
  ],
  "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>"
      ]
    }
  ]
}