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 |
官方網址 | 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" } } |