Font Detector

Font Detector

Detect fonts used on web pages. Inspect font information.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon-128.png"
  },
  "content_scripts": [
    {
      "css": [
        "content.css",
        "field.css"
      ],
      "js": [
        "lib/jquery.js",
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "__MSG_description__",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "default_locale": "en",
  "manifest_version": 2,
  "name": "__MSG_name__",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "version": "1.2.4",
  "content_security_policy": "script-src 'self' https://www.google-analytics.com https://*.googleapis.com https://www.googletagmanager.com; object-src 'self'",
  "web_accessible_resources": [
    "*.css",
    "*.svg"
  ]
}