Gentle Alerts

Gentle Alerts

Intercept browser alerts (the interruptive popups) and turn them into gentle modals.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gentle Alerts",
  "version": "1.3.2",
  "description": "Intercept browser alerts (the interruptive popups) and turn them into gentle modals.",
  "icons": {
    "16": "img/logo16x16.png",
    "32": "img/logo32x32.png",
    "48": "img/logo48x48.png",
    "128": "img/logo128x128.png",
    "900": "img/logo900x900.png"
  },
  "author": "Albert Wang",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "bootstrap.js"
      ]
    }
  ],
  "homepage_url": "https://github.com/albertyw/gentle-alerts",
  "offline_enabled": true,
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "gentle-alerts.min.js",
        "gentle-alerts.css",
        "notification.ogg",
        "options.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_ui": {
    "page": "options.htm"
  }
}