Pentaho Saiku Sidekicks

Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)

Was ist Pentaho Saiku Sidekicks?

Pentaho Saiku Sidekicks ist eine Chrome-Erweiterung, die von natenho entwickelt wurde, und ihr Hauptmerkmal ist "Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)".

Erweiterungsscreenshots

screenshot

Pentaho Saiku Sidekicks-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pentaho Saiku Sidekicks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Pentaho Saiku Sidekicks Pentaho Saiku Sidekicks
ID bpeenmnidbefimgeljlmggknhlihgnpp
Offizielle URL https://chromewebstore.google.com/detail/pentaho-saiku-sidekicks/bpeenmnidbefimgeljlmggknhlihgnpp
Beschreibung Renderize heat maps over Saiku Analytics reports in Pentaho and get some other useful tweaks ;-)
Dateigröße 727 KB
Installationsanzahl 30
Aktuelle Version 0.1.0
Letztes Update 2021-01-25
Veröffentlichungsdatum 2020-12-15
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler natenho
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/natenho/pentaho-sidekicks
Hilfeseite URL https://github.com/natenho/pentaho-sidekicks/issues
Unterstützte Sprachen 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"
    }
}