ПланФикс: Уведомления

ПланФикс: Уведомления

Работа с онлайн уведомлениями

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.8",
  "name": "ПланФикс: Уведомления",
  "description": "Работа с онлайн уведомлениями",
  "manifest_version": 2,
  "icons": {
    "24": "128.png",
    "128": "128.png"
  },
  "permissions": [
    "notifications",
    "tabs",
    "https://*.planfix.ru/",
    "https://*.planfix.com/",
    "https://*.planfix.ua/",
    "https://*.amazonaws.com/",
    "https://*.bizmrg.com/",
    "https://*.yandexcloud.net/",
    "https://*.cdninstagram.com/"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.planfix.ru/*",
        "https://*.planfix.com/*",
        "https://*.planfix.ua/*"
      ],
      "js": [
        "rpc.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "notifications.js"
    ],
    "persistent": false
  }
}