Prometheus Formatter

Prometheus Formatter

Makes plain Prometheus/OpenMetrics endpoints easier to read.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Prometheus Formatter",
  "version": "3.1.0",
  "manifest_version": 3,
  "description": "Makes plain Prometheus/OpenMetrics endpoints easier to read.",
  "homepage_url": "https://github.com/fhemberger/prometheus-formatter",
  "minimum_chrome_version": "88",
  "icons": {
    "32": "icons/32.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "32": "icons/32.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    }
  },
  "permissions": [
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "109.0"
    }
  }
}