Inbox Zero Fanfare

Inbox Zero Fanfare

When your Gmail hits Inbox Zero, play the Classic Mac OS Fanfare sound effect.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Inbox Zero Fanfare",
  "version": "1.0.1",
  "description": "When your Gmail hits Inbox Zero, play the Classic Mac OS Fanfare sound effect.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "zepto.js",
        "fanfare.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "manifest_version": 2
}