Splunk Fullscreen
True fullscreen dashboards! Reclaim space on your dashboards otherwise taken by the Splunk header.
Splunk Fullscreenคืออะไร?
Splunk Fullscreen เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniel Harvey และคุณลักษณะหลักของมันคือ "True fullscreen dashboards! Reclaim space on your dashboards otherwise taken by the Splunk header."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Splunk Fullscreen
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 } |