Google with Favicons

Google with Favicons

A Chrome extension which shows favicons in Google search results.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Google with Favicons",
  "version": "1.0.1",
  "description": "A Chrome extension which shows favicons in Google search results.",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "http://www.google.*/*",
        "https://www.google.*/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/content.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  }
}