Twitter Dynamic Favicon

Twitter Dynamic Favicon

Changes the favicon of twitter.com if new tweets are available.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitter Dynamic Favicon",
  "version": "0.3.2",
  "description": "Changes the favicon of twitter.com if new tweets are available.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://twitter.com/*",
        "https://twitter.com/*"
      ],
      "js": [
        "favicon.js"
      ]
    }
  ]
}