Power BI Report Tools

A plugin for Power BI that adds a couple of nifty features to reports that are either lacking or straight up missing.

Power BI Report Tools란 무엇입니까?

Power BI Report Tools은(는) Aster ICT에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A plugin for Power BI that adds a couple of nifty features to reports that are either lacking or straight up missing."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Power BI Report Tools 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        *Now works with the new redesign of Power BI!*

You can:

-Display a report in fullscreen mode.
-Rotate between pages in a report based on a (per page) timer.
-Refresh a report automatically.

These options will stay active even if you switch to another tab, refresh the browser or even restart the browser.

*The refresh option will only work if you are making use of a live dataset*                    

확장 프로그램 기본 정보

이름 Power BI Report Tools Power BI Report Tools
ID jlblijoolikopdmpohcppphkidcdhkkf
공식 URL https://chrome.google.com/webstore/detail/power-bi-report-tools/jlblijoolikopdmpohcppphkidcdhkkf
설명 A plugin for Power BI that adds a couple of nifty features to reports that are either lacking or straight up missing.
파일 크기 78.41 KB
설치 횟수 4,254
현재 버전 2.0.11
최근 업데이트 2021-11-23
출시 날짜 2020-05-19
평점 2.80/5 총 5 개의 평점
개발자 Aster ICT
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.asterict.nl/
개인정보 보호 정책 페이지 URL https://www.asterict.nl/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": {
            "128": "Assets\/img\/128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Power BI Report Tools"
    },
    "background": {
        "service_worker": "Assets\/JS\/background.js"
    },
    "content_scripts": [
        {
            "js": [
                "Assets\/JS\/pagenames.js"
            ],
            "matches": [
                "https:\/\/*.powerbi.com\/groups\/*\/reports\/*\/*"
            ]
        },
        {
            "js": [
                "Assets\/JS\/fullscreen.js"
            ],
            "matches": [
                "https:\/\/*.powerbi.com\/groups\/*\/reports\/*\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "Assets\/JS\/refresh.js"
            ],
            "matches": [
                "https:\/\/*.powerbi.com\/groups\/*\/reports\/*\/*"
            ],
            "run_at": "document_idle"
        },
        {
            "js": [
                "Assets\/JS\/rotate.js"
            ],
            "matches": [
                "https:\/\/*.powerbi.com\/groups\/*\/reports\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "Assets\/css\/*.css",
                "Assets\/img\/*.png",
                "Assets\/JS\/*.js"
            ],
            "matches": [
                "https:\/\/app.powerbi.com\/*"
            ]
        }
    ],
    "description": "A plugin for Power BI that adds a couple of nifty features to reports that are either lacking or straight up missing.",
    "icons": {
        "128": "Assets\/img\/128.png",
        "64": "Assets\/img\/64.png",
        "48": "Assets\/img\/48.png",
        "32": "Assets\/img\/32.png",
        "24": "Assets\/img\/24.png",
        "16": "Assets\/img\/16.png"
    },
    "manifest_version": 3,
    "name": "Power BI Report Tools",
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.powerbi.com\/groups\/*\/reports\/*\/*"
    ],
    "version": "2.0.11"
}