Examine source code of Yahoo Mail Notifier

Inspect and view changes in Yahoo Mail Notifier source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "version": "0.2.0",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "options_ui": {
    "open_in_tab": true,
    "page": "data/options/options.html"
  },
  "permissions": [
    "alarms",
    "storage",
    "webRequest",
    "notifications",
    "*://*.gmx.com/*",
    "*://*.live.com/*",
    "*://*.mail.com/*",
    "*://*.yahoo.com/*",
    "*://*.icloud.com/*",
    "*://mail.google.com/*",
    "webRequestBlocking"
  ],
  "background": {
    "scripts": [
      "lib/emails/gmx.js",
      "lib/emails/live.js",
      "lib/emails/yahoo.js",
      "lib/emails/gmail.js",
      "lib/emails/icloud.js",
      "lib/emails/mailcom.js",
      "lib/config.js",
      "lib/chrome.js",
      "lib/runtime.js",
      "lib/common.js"
    ]
  },
  "browser_action": {
    "default_title": "__MSG_extensionName__",
    "default_popup": "data/popup/popup.html",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "data/content_script/inject.js"
      ],
      "matches": [
        "*://*.gmx.com/*",
        "*://*.mail.com/*"
      ]
    }
  ],
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{a35f7460-f05a-4dd9-9321-81c0140f4f75}"
    }
  }
}