Pentaho Saiku Sidekicks
Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)
Pentaho Saiku Sidekicks là gì?
Pentaho Saiku Sidekicks là một tiện ích mở rộng Chrome được phát triển bởi natenho, và tính năng chính của nó là "Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Pentaho Saiku Sidekicks
Tải xuống các tệp mở rộng Pentaho Saiku Sidekicks dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension intent is to provide a set of features to improve productivity working with Pentaho Business Intelligence. - Heat maps Using Saiku Analytics plug-in, sometimes you need to analyze the reports in a heat map perspective. Heat maps allow insights of data giving visual cues about how data varies, where anomalies or highest/lowest values are concentrated. This plugin adds heat map feature to Saiku reports inside Pentaho. Just by right-clicking the report, you can produce a heat map for each row, for each columns or even the entire table. - Copy report to clipboard The easiest way to copy the entire report to the clipboard so it can be pasted anywhere (e.g. Microsoft Excel). - Number formatting Sometimes you may want to visualize or copy numbers with different decimal places or even digit separators, and the extensions gives the ability to choose different locale-independent number formatting. Please, visit the extension web site to ask for new features or to submit bugs!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Pentaho Saiku Sidekicks |
ID | bpeenmnidbefimgeljlmggknhlihgnpp |
URL Chính Thức | https://chromewebstore.google.com/detail/pentaho-saiku-sidekicks/bpeenmnidbefimgeljlmggknhlihgnpp |
Mô tả | Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-) |
Kích Thước Tệp | 727 KB |
Số Lần Cài Đặt | 30 |
Phiên Bản Hiện Tại | 0.1.0 |
Cập Nhật Lần Cuối | 2021-01-25 |
Ngày Phát Hành | 2020-12-15 |
Đánh Giá | 5.00/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | natenho |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/natenho/pentaho-sidekicks |
URL Trang Trợ Giúp | https://github.com/natenho/pentaho-sidekicks/issues |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pentaho Saiku Sidekicks", "description": "Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)", "version": "0.1.0", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/pentaho\/Home", "*:\/\/*\/pentaho\/Home?*" ], "js": [ "common.js", "chroma.min.js", "events.js", "heatmap.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "scripts": [ "common.js", "startup.js", "context-menu.js" ], "persistent": false }, "permissions": [ "activeTab", "contextMenus", "storage", "tabs" ], "icons": { "16": "icon16.png", "48": "icon48.png", "96": "icon.png" } } |