Power BI RS Refresh
Automate the Refresh button click in Power BI Report Server
What is Power BI RS Refresh?
Power BI RS Refresh is a Chrome extension developed by Jesse Long, and its main feature is "Automate the Refresh button click in Power BI Report Server".
Extension Screenshots
Download Power BI RS Refresh Extension CRX File
Download Power BI RS Refresh extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Power BI RS Refresh |
ID | ofdbpkdfpkbdeehllfmpafeofnbcjnal |
Official URL | https://chrome.google.com/webstore/detail/power-bi-rs-refresh/ofdbpkdfpkbdeehllfmpafeofnbcjnal |
Description | Automate the Refresh button click in Power BI Report Server |
File Size | 394 KB |
Installation Count | 63 |
Current Version | 1.0 |
Last Updated | 2022-11-04 |
Publish Date | 2022-11-04 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Jesse Long |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |