Pentaho Saiku Sidekicks
Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)
什么是Pentaho Saiku Sidekicks?
Pentaho Saiku Sidekicks是由natenho开发的Chrome扩展程序,该扩展的主要功能是“Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)”。
扩展截图
下载Pentaho Saiku Sidekicks扩展crx文件
下载Pentaho Saiku Sidekicks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | Pentaho Saiku Sidekicks |
ID | bpeenmnidbefimgeljlmggknhlihgnpp |
官方URL | https://chromewebstore.google.com/detail/pentaho-saiku-sidekicks/bpeenmnidbefimgeljlmggknhlihgnpp |
简介 | Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-) |
文件大小 | 727 KB |
安装次数 | 30 |
当前版本 | 0.1.0 |
更新时间 | 2021-01-25 |
上架时间 | 2020-12-15 |
评分 | 5.00/5 共6次评分 |
开发者 | natenho |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/natenho/pentaho-sidekicks |
帮助页面URL | https://github.com/natenho/pentaho-sidekicks/issues |
支持的语言 | 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" } } |