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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pentaho Saiku Sidekicks एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |