Birthday Manager

Birthday Manager

A Chrome Extension to automatically wish your Facebook friends on their birthdays

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Birthday Manager",
  "description": "A Chrome Extension to automatically wish your Facebook friends on their birthdays",
  "version": "3.1.0",
  "browser_action": {
    "default_icon": "logo.png"
  },
  "permissions": [
    "https://*.facebook.com/*",
    "storage",
    "identity",
    "identity.email"
  ],
  "background": {
    "scripts": [
      "background_script.js"
    ]
  },
  "icons": {
    "16": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "index.html",
    "content_script.js",
    "content_script.js.map",
    "background_script.js.map"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "manifest_version": 2
}