InstAddr for Chrome

InstAddr for Chrome

Extension that notifies you of new e-mails received at your InstAddr e-mail address.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "2.1.0",
  "manifest_version": 3,
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "*://m.kuku.lu/*",
        "*://mr.kuku.lu/*"
      ],
      "all_frames": false,
      "js": [
        "disable_webpush.js"
      ]
    }
  ],
  "action": {
    "default_title": "__MSG_extName__",
    "default_icon": "img/icon48.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "icons": {
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "permissions": [
    "background",
    "notifications",
    "contextMenus",
    "webRequest",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "*://*.kuku.lu/"
  ]
}