Notification Monitor

Мониторинг уведомлений и отправка в Telegram
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Notification Monitor",
  "version": "1.0",
  "description": "Мониторинг уведомлений и отправка в Telegram",
  "permissions": [
    "tabs",
    "activeTab",
    "scripting"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://admin-panel-ru.tradexclub.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "tradex-notif@yourdomain.com"
    }
  }
}