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 ;-)"입니다.

확장 프로그램 스크린샷

screenshot

Pentaho Saiku Sidekicks 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    }
}