FontMe

FontMe

Discover what font was used on any webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "FontMe",
  "version": "1.0.4",
  "description": "Discover what font was used on any webpage.",
  "icons": {
    "16": "images/fmIcon16.png",
    "48": "images/fmIcon48.png",
    "128": "images/fmIcon128.png"
  },
  "browser_action": {
    "default_icon": {
      "128": "images/fmIcon128.png"
    },
    "default_title": "FontMe",
    "default_popup": "html/popup.html"
  },
  "author": "Paper Box",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/jquery-1.11.2.min.js",
        "js/jFont-Checker/jfont-checker.js",
        "js/content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/jquery-1.11.2.min.js",
      "js/background.js"
    ]
  },
  "homepage_url": "http:JKJones.me",
  "offline_enabled": true,
  "permissions": [
    "contextMenus"
  ],
  "short_name": "FM"
}