Saavn Notifications

Saavn Notifications

Notifications! See what's playing without the struggle of opening the tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Saavn Notifications",
  "description": "Notifications! See what's playing without the struggle of opening the tab.",
  "manifest_version": 2,
  "version": "1.0.2",
  "permissions": [
    "notifications",
    "activeTab",
    "tabs",
    "http://www.saavn.com/*",
    "https://www.saavn.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "saavn.min.js"
      ],
      "matches": [
        "http://www.saavn.com/*",
        "https://www.saavn.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon48.png",
    "default_title": "Saavn Notifications"
  }
}