Power BI Real-Time Slideshow

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

¿Qué es Power BI Real-Time Slideshow?

Power BI Real-Time Slideshow es una extensión de Chrome desarrollada por https://displagent.io, y su función principal es "Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Power BI Real-Time Slideshow

Descarga archivos de extensión Power BI Real-Time Slideshow en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Power BI Real-Time Slideshow Power BI Real-Time Slideshow
ID dajmfhbgodeengcbfmcacmhmcimpmhpe
URL Oficial https://chromewebstore.google.com/detail/power-bi-real-time-slides/dajmfhbgodeengcbfmcacmhmcimpmhpe
Descripción Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).
Tamaño del Archivo 154 KB
Cantidad de Instalaciones 1,110
Versión Actual 2.4.2
Última Actualización 2023-09-13
Fecha de Publicación 2020-09-22
Calificación 1.00/5 Total de 1 Calificaciones
Desarrollador https://displagent.io
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/DMiradakis/Power-BI-Real-Time-Slideshow
URL de la Página de Ayuda https://www.displagent.io
Idiomas Soportados 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"
            ]
        }
    ]
}