Yahoo! Mail Alerter

Yahoo! Mail Alerter

Uses your Yahoo! login cookie to check for new Yahoo! mails (i.e. no password required)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "yma@ngokimphu"
    }
  },
  "name": "Yahoo! Mail Alerter",
  "version": "1.5.1",
  "description": "Alert you when new emails arrived in your Yahoo! Mail box",
  "icons": {
    "48": "icons/yma-48.png"
  },
  "browser_action": {
    "default_icon": "icons/yma-48.png"
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.mail.yahoo.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "notifications",
    "contextMenus",
    "https://mail.yahoo.com/",
    "https://login.yahoo.com/"
  ]
}