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文件

下載Power BI Report Tools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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