Grafana - Enhancement

This extension is to enhance the Grafana/Influxdb dashboard. 1. Grafana template variables with label "HIDE:" will be hidden in…

什麼是Grafana - Enhancement?

Grafana - Enhancement是由hankpyh開發的Chrome擴展程式,該擴展的主要功能是“This extension is to enhance the Grafana/Influxdb dashboard. 1. Grafana template variables with label "HIDE:" will be hidden in…”。

擴展截圖

screenshot
screenshot

下載Grafana - Enhancement擴展crx文件

下載Grafana - Enhancement擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension is to enhance the Grafana/Influxdb dashboard. 
1. Grafana template variables with label "HIDE:" will be hidden in the dashboard.
2. It will rename the title of Grafana table panel whose title starting with "XSUM:", and show the sum stat of the table rather than the table cells. 

v0.4: Add context menu to show and hide graph and row.                    

擴展基本資訊

名稱 Grafana - Enhancement Grafana - Enhancement
ID iheohkdfhbbmdiaofgmjomdpjhidakjf
官方網址 https://chromewebstore.google.com/detail/grafana-enhancement/iheohkdfhbbmdiaofgmjomdpjhidakjf
簡介 This extension is to enhance the Grafana/Influxdb dashboard. 1. Grafana template variables with label "HIDE:" will be hidden in…
檔案大小 592 KB
安裝次數 368
目前版本 0.5
更新時間 2017-10-25
上架時間 2017-10-24
開發者 hankpyh
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Grafana - Enhancement",
    "version": "0.5",
    "minimum_chrome_version": "23",
    "icons": {
        "16": "icon_16.png",
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon_128.png",
        "default_title": "Grafana - Enhancement"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/grafana-riad.wbx2.com\/dashboard\/db\/*",
                "https:\/\/grafana-riad2.wbx2.com\/dashboard\/db\/*",
                "https:\/\/grafana-rdfw2.wbx2.com\/dashboard\/db\/*",
                "https:\/\/grafana-achm.wbx2.com\/dashboard\/db\/*"
            ],
            "js": [
                "thirdparty\/jquery-3.2.1.min.js",
                "manipulate_table.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus"
    ]
}