fonts infos

fonts infos

An extention to show/inspect and analyze fonts in web-pages, on single element or the whole document.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Paris",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": "images/icon.png",
    "default_popup": "popup/popup.html",
    "default_title": "Show this page's fonts infos."
  },
  "content_scripts": [
    {
      "js": [
        "jquery-3.6.3.min.js",
        "font.js",
        "fontAll.js",
        "removeFont.js",
        "foreground.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "images/icon.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "offline_enabled": true,
  "options_page": "options/options.html",
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "short_name": "font-inspector",
  "version": "5.0.1"
}