Detector Whats Font

Detector Whats Font

You can find out the font of a web page very easily.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.3.0",
  "background": {
    "service_worker": "js/service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/contents.js"
      ]
    }
  ],
  "icons": {
    "64": "img/WF_64.png",
    "128": "img/WF_128.png",
    "256": "img/WF_256.png",
    "512": "img/WF_512.png"
  },
  "action": {
    "default_icon": {
      "64": "img/WF_64.png",
      "128": "img/WF_128.png",
      "256": "img/WF_256.png",
      "512": "img/WF_512.png"
    }
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "contextMenus"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' ; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "css/wf.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "options_ui": {
    "page": "html/setting.html",
    "open_in_tab": true
  },
  "default_locale": "en",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "manifest_version": 3,
  "minimum_chrome_version": "88"
}