Font Highligher

Font Highligher

Highlight selected font on the page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "0.1.0",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "default_locale": "en",
  "homepage_url": "http://www.aidevs.com/",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "css": [
        "content.css"
      ],
      "js": [
        "lib/fontdetect.js",
        "lib/jquery-2.0.3.js",
        "content.js"
      ]
    }
  ],
  "page_action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "38": "img/icon-38.png"
    },
    "default_title": "__MSG_pageActionTitle__",
    "default_popup": "popup.html"
  },
  "minimum_chrome_version": "21.0",
  "offline_enabled": false,
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}