New Relic UX Enhancer

New Relic UX Enhancer

Clean up some noise within the New Relic Dashboards!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "New Relic UX Enhancer",
  "version": "1.0.0",
  "description": "Clean up some noise within the New Relic Dashboards!",
  "manifest_version": 2,
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "permissions": [
    "https://one.newrelic.com/launcher/dashboards*",
    "storage",
    "activeTab",
    "webNavigation"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://one.newrelic.com/launcher/dashboards*"
      ],
      "css": [
        "styles.css"
      ],
      "js": [
        "jquery-3.5.1.min.js",
        "string-replacer.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "jquery-3.5.1.min.js",
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "logo.png"
  }
}