Power BI Real-Time Slideshow

Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).

Power BI Real-Time Slideshow là gì?

Power BI Real-Time Slideshow là một tiện ích mở rộng Chrome được phát triển bởi https://displagent.io, và tính năng chính của nó là "Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Power BI Real-Time Slideshow

Tải xuống các tệp mở rộng Power BI Real-Time Slideshow dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Hey everyone! I've got some REALLY exciting news to share!

I've replaced this old Chrome extension with a new cross-platform desktop application that is far, far more powerful, called Displagent.

You can find it here: https://www.displagent.io

Original extension source code:
https://github.com/DMiradakis/Power-BI-Real-Time-Slideshow                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Power BI Real-Time Slideshow Power BI Real-Time Slideshow
ID dajmfhbgodeengcbfmcacmhmcimpmhpe
URL Chính Thức https://chromewebstore.google.com/detail/power-bi-real-time-slides/dajmfhbgodeengcbfmcacmhmcimpmhpe
Mô tả Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).
Kích Thước Tệp 154 KB
Số Lần Cài Đặt 1,110
Phiên Bản Hiện Tại 2.4.2
Cập Nhật Lần Cuối 2023-09-13
Ngày Phát Hành 2020-09-22
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://displagent.io
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DMiradakis/Power-BI-Real-Time-Slideshow
URL Trang Trợ Giúp https://www.displagent.io
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Power BI Real-Time Slideshow",
    "manifest_version": 2,
    "version": "2.4.2",
    "description": "Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "*:\/\/app.powerbi.com\/*",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "img\/Power_BI_Icon_Reduced_2.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/app.powerbi.com\/*"
            ],
            "js": [
                "content.js",
                ".\/Javascript Dependencies\/jquery-3.4.1.js",
                ".\/Javascript Dependencies\/jquery-mutation-summary.js",
                ".\/Javascript Dependencies\/mutation-summary.js"
            ]
        }
    ]
}