SonarG - Grafana Sound Alerts

SonarG - Grafana Sound Alerts

Enhance your Grafana experience with SonarG, a powerful sound alert extension. Receive audible notifications for critical events.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SonarG - Grafana Sound Alerts",
  "version": "1.1",
  "description": "Enhance your Grafana experience with SonarG, a powerful sound alert extension. Receive audible notifications for critical events.",
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    },
    "default_popup": "/popup/popup.html",
    "default_title": "SonarG - Grafana Sound Alerts"
  },
  "options_ui": {
    "page": "/options/options.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_security_policy": {
    "script-src": "script-src 'self' audio.js",
    "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';"
  },
  "offline_enabled": true
}