Fonts Determiner

Fonts Determiner

No guessing what's the font on a website, know it for sure.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": {
      "76": "img/icon76.png",
      "96": "img/icon96.png",
      "128": "img/icon128.png",
      "256": "img/icon256.png"
    },
    "default_title": "Font Determiner"
  },
  "background": {
    "service_worker": "js/bg.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/libs/jquery.js",
        "js/content.js",
        "js/libs/html2canvas.min.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ],
  "default_locale": "en",
  "description": "__MSG_description__",
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "48": "img/icon48.png",
    "96": "img/icon96.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "options_page": "option.html",
  "permissions": [
    "scripting",
    "storage",
    "unlimitedStorage",
    "activeTab"
  ],
  "short_name": "Font Determiner",
  "version": "1.5.7",
  "version_name": "1.5.7",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "css/style.css",
        "css/in.css",
        "img/*.png"
      ]
    }
  ]
}