Power BI Real-Time Slideshow

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

Vad är Power BI Real-Time Slideshow?

Power BI Real-Time Slideshow är en Chrome-tillägg utvecklad av https://displagent.io, och dess huvudfunktion är "Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).".

Tilläggsskärmbilder

screenshot

Ladda ner Power BI Real-Time Slideshow-förlängningens CRX-fil

Ladda ner Power BI Real-Time Slideshow-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Power BI Real-Time Slideshow Power BI Real-Time Slideshow
ID dajmfhbgodeengcbfmcacmhmcimpmhpe
Officiell webbadress https://chromewebstore.google.com/detail/power-bi-real-time-slides/dajmfhbgodeengcbfmcacmhmcimpmhpe
Beskrivning Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).
Filstorlek 154 KB
Antal Installationer 1,110
Aktuell Version 2.4.2
Senast Uppdaterad 2023-09-13
Publiceringsdatum 2020-09-22
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare https://displagent.io
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/DMiradakis/Power-BI-Real-Time-Slideshow
Hjälpsida URL https://www.displagent.io
Stödda Språk 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"
            ]
        }
    ]
}