Power BI RS Refresh

Automate the Refresh button click in Power BI Report Server

Cos'è Power BI RS Refresh?

Power BI RS Refresh è un'estensione di Chrome sviluppata da Jesse Long, e la sua funzione principale è "Automate the Refresh button click in Power BI Report Server".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Power BI RS Refresh

Scarica i file di estensione Power BI RS Refresh in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        A plugin to automate the refresh button click in Power BI Report Server. Users can choose to use the dropdown values or enter any value in the textbox as refresh interval.                    

Informazioni di Base sull'Estensione

Nome Power BI RS Refresh Power BI RS Refresh
ID ofdbpkdfpkbdeehllfmpafeofnbcjnal
URL Ufficiale https://chrome.google.com/webstore/detail/power-bi-rs-refresh/ofdbpkdfpkbdeehllfmpafeofnbcjnal
Descrizione Automate the Refresh button click in Power BI Report Server
Dimensione del File 394 KB
Conteggio Installazioni 63
Versione Corrente 1.0
Ultimo Aggiornamento 2022-11-04
Data di Pubblicazione 2022-11-04
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Jesse Long
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Power BI RS Refresh",
    "description": "Automate the Refresh button click in Power BI Report Server",
    "version": "1.0",
    "icons": {
        "128": "power-BI.png"
    },
    "background": {
        "service_worker": "backend.js"
    },
    "action": {
        "default_title": "PowerBI RS Refresh",
        "default_icon": {
            "128": "power-BI.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "refresh.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab",
        "scripting"
    ]
}