MZ Transfer Alarm

MZ Transfer Alarm

Create alarms for transfer players on shortlist at managerzone.com.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MZ Transfer Alarm",
  "version": "1.1.0",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "homepage_url": "https://github.com/kaplanbora/mz-transfer-alarm",
  "permissions": [
    "notifications",
    "alarms"
  ],
  "icons": {
    "48": "icons/logo-48.png",
    "96": "icons/logo-96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.managerzone.com/?p=shortlist"
      ],
      "js": [
        "content_scripts/mz.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background_scripts/content.js"
    ]
  },
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/logo-32.png",
    "theme_icons": [
      {
        "light": "icons/dlogo-32.png",
        "dark": "icons/logo-32.png",
        "size": 32
      }
    ],
    "default_title": "MZ Transfer Alarm",
    "default_popup": "popup/index.html"
  }
}