Replace Favicon

Replace Favicon

Confuse your friends by replacing the fav icon

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "description": "Confuse your friends by replacing the fav icon",
  "version": "0.1",
  "name": "Replace Favicon",
  "permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/fav.js"
      ]
    }
  ]
}