Find That Font: Font Finder

Find That Font: Font Finder

Identify what font is on the web page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Find That Font: Font Finder",
  "version": "0.0.5",
  "manifest_version": 2,
  "description": "Identify what font is on the web page.",
  "browser_action": {
    "default_icon": {
      "48": "icons/icon48.png",
      "72": "icons/icon72.png",
      "96": "icons/icon96.png",
      "128": "icons/icon128.png",
      "144": "icons/icon144.png",
      "192": "icons/icon192.png"
    }
  },
  "icons": {
    "48": "icons/icon48.png",
    "72": "icons/icon72.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png",
    "144": "icons/icon144.png",
    "192": "icons/icon192.png"
  },
  "content_scripts": [
    {
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery.min.js",
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "<all_urls>"
  ]
}