Grafana helper

Grafana helper

Attach panel to browser and open it from every tab

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Grafana helper",
  "version": "1.1",
  "description": "Attach panel to browser and open it from every tab",
  "permissions": [
    "<all_urls>",
    "storage",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "main.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "window.html"
  },
  "manifest_version": 2,
  "icons": {
    "16": "images/gdr_16.png",
    "32": "images/gdr_32.png",
    "48": "images/gdr_48.png",
    "128": "images/gdr_128.png"
  }
}