Power BI RS Refresh
Automate the Refresh button click in Power BI Report Server
Co je Power BI RS Refresh?
Power BI RS Refresh je rozšíření Chrome vyvinuté Jesse Long, a jeho hlavní funkcí je „Automate the Refresh button click in Power BI Report Server“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Power BI RS Refresh
Stáhněte si soubory rozšíření Power BI RS Refresh ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Power BI RS Refresh |
ID | ofdbpkdfpkbdeehllfmpafeofnbcjnal |
Oficiální URL | https://chrome.google.com/webstore/detail/power-bi-rs-refresh/ofdbpkdfpkbdeehllfmpafeofnbcjnal |
Popis | Automate the Refresh button click in Power BI Report Server |
Velikost souboru | 394 KB |
Počet instalací | 63 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2022-11-04 |
Datum Vydání | 2022-11-04 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Jesse Long |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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" ] } |