Popmundo Notification

Popmundo Notification

An unofficial app to show the popmundo notifications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Popmundo Notification",
  "description": "An unofficial app to show the popmundo notifications.",
  "version": "0.6",
  "manifest_version": 2,
  "permissions": [
    "http://*.popmundo.com/*",
    "webRequest",
    "notifications",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.popmundo.com/*"
      ],
      "js": [
        "jquery-1.10.1.min.js",
        "favico.min.js",
        "content_scripts.js"
      ]
    }
  ],
  "icons": {
    "16": "images/p5757.png",
    "128": "images/p5757.png"
  }
}