Notes in Yandex.Mail — eZametka

Notes in Yandex.Mail — eZametka

Add notes to emails in Yandex.Mail

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.3.7",
  "manifest_version": 3,
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "images/16x16.png",
    "128": "images/128x128.png"
  },
  "action": {
    "default_icon": "images/16x16.png"
  },
  "permissions": [
    "storage",
    "alarms",
    "notifications"
  ],
  "host_permissions": [
    "*://dev.ezametka.ru/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://ezametka.ru/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://mail.yandex.ru/*",
        "*://mail.yandex.com/*",
        "*://mail.yandex.ua/*",
        "*://mail.yandex.kz/*",
        "*://mail.yandex.by/*",
        "*://mail.yandex.fr/*",
        "*://mail.yandex.az/*",
        "*://mail.yandex.ee/*",
        "*://mail.yandex.kg/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*.png"
      ],
      "matches": [
        "*://mail.yandex.ru/*",
        "*://mail.yandex.com/*",
        "*://mail.yandex.ua/*",
        "*://mail.yandex.kz/*",
        "*://mail.yandex.by/*",
        "*://mail.yandex.fr/*",
        "*://mail.yandex.az/*",
        "*://mail.yandex.ee/*",
        "*://mail.yandex.kg/*"
      ]
    }
  ]
}