Find Font

Find Font

Define any font on the page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.1",
  "manifest_version": 2,
  "description": "Define any font on the page.",
  "icons": {
    "128": "images/logo.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "js/vendor/jq.min.js",
      "js/vendor/html2canvas.min.js",
      "js/init.js"
    ]
  },
  "content_security_policy": "script-src 'self' https://typekit.com; object-src 'self'",
  "browser_action": {
    "default_icon": {
      "128": "images/logo.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/main.js",
        "js/vendor/jq.min.js",
        "js/vendor/html2canvas.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "/css/style.css"
  ],
  "permissions": [
    "<all_urls>",
    "storage"
  ]
}