Splunk Fullscreen

True fullscreen dashboards! Reclaim space on your dashboards otherwise taken by the Splunk header.

什麼是Splunk Fullscreen?

Splunk Fullscreen是由Daniel Harvey開發的Chrome擴展程式,該擴展的主要功能是“True fullscreen dashboards! Reclaim space on your dashboards otherwise taken by the Splunk header.”。

擴展截圖

screenshot
screenshot

下載Splunk Fullscreen擴展crx文件

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

擴展使用說明

                        Reclaim true fullscreen for your operations center dashboards!
This extension will allow you to automatically hide the Splunk header on both SimpleXML and JSON (Dashboards Beta) dashboards, giving you the maximum space available on your displays.

* Support for both SimpleXML and JSON dashboards
* Presentation Mode - Automatically rotate between dashboards on multiple tabs, now all in one plugin.

Open source with public license (GPLv3)
Github:
https://github.com/snags141/SplunkFullscreen

Permissions:
"activeTab" - Used to enable/disable the header on the currently active tab
"tabs" - Used to enable/disable the header on all open tabs for all of your dashboards.
"http://*/*" and "https://*.*" - Grants permissions to all sites, so that regardless of your Splunk hosting method domain/URL/IP, the extension will work.
"storage" - Used to save your settings to the local Chrome storage.                    

擴展基本資訊

名稱 Splunk Fullscreen Splunk Fullscreen
ID gcadgdccaihgmemeobhlbkalhimpjmof
官方網址 https://chromewebstore.google.com/detail/splunk-fullscreen/gcadgdccaihgmemeobhlbkalhimpjmof
簡介 True fullscreen dashboards! Reclaim space on your dashboards otherwise taken by the Splunk header.
檔案大小 106 KB
安裝次數 78
目前版本 1.0
更新時間 2020-02-25
上架時間 2020-02-23
評分 5.00/5 共 1 次評分
開發者 Daniel Harvey
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Splunk Fullscreen",
    "version": "1.0",
    "description": "True fullscreen dashboards! Reclaim space on your dashboards otherwise taken by the Splunk header.",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "getContent.js"
            ]
        }
    ],
    "options_page": "options.html",
    "background": {
        "matches": [
            "http:\/\/*\/*",
            "https:\/\/*\/*"
        ],
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/splunk_fullscreen16.png",
            "32": "images\/splunk_fullscreen32.png",
            "48": "images\/splunk_fullscreen48.png",
            "128": "images\/splunk_fullscreen128.png"
        }
    },
    "icons": {
        "16": "images\/splunk_fullscreen16.png",
        "32": "images\/splunk_fullscreen32.png",
        "48": "images\/splunk_fullscreen48.png",
        "128": "images\/splunk_fullscreen128.png"
    },
    "manifest_version": 2
}