Font Finder

Font Finder

Easily detect any html fonts on a web page from your favorite sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Font Finder",
  "description": "Easily detect any html fonts on a web page from your favorite sites",
  "version": "3.8.17.1130",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "javascript/content-script.js",
        "javascript/libs.min.js"
      ]
    }
  ],
  "action": {
    "default_icon": "assets/48.png"
  },
  "permissions": [
    "cookies",
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>",
    "*://*/*"
  ],
  "icons": {
    "48": "assets/48.png",
    "64": "assets/64.png",
    "128": "assets/128.png"
  },
  "background": {
    "service_worker": "javascript/worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}