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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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
}