Search Engine Favicons

Search Engine Favicons

Show favicons next to results on popular search engines. Display favicons next to search results on Google, Bing, Yahoo, StartPage, or Ecosia.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "default_locale": "en",
  "version": "4.5.3",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "permissions": [
    "management",
    "<all_urls>",
    "storage"
  ],
  "applications": {
    "gecko": {
      "id": "SearchEngineFavicons@mcprv",
      "strict_min_version": "48.0a1"
    }
  },
  "icons": {
    "48": "sefi-48.png",
    "96": "sefi-96.png"
  },
  "background": {
    "scripts": [
      "sefi-background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "sefi-content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "options_ui": {
    "page": "sefi-options.html"
  }
}