Power BI RS Refresh
Automate the Refresh button click in Power BI Report Server
Что такое Power BI RS Refresh?
Power BI RS Refresh - это расширение Chrome, разработанное Jesse Long, и его основная функция - "Automate the Refresh button click in Power BI Report Server".
Снимки экрана расширения
Скачать файл CRX расширения Power BI RS Refresh
Скачайте файлы расширений Power BI RS Refresh в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Power BI RS Refresh |
ID | ofdbpkdfpkbdeehllfmpafeofnbcjnal |
Официальный URL | https://chrome.google.com/webstore/detail/power-bi-rs-refresh/ofdbpkdfpkbdeehllfmpafeofnbcjnal |
Описание | Automate the Refresh button click in Power BI Report Server |
Размер файла | 394 KB |
Количество установок | 63 |
Текущая Версия | 1.0 |
Последнее Обновление | 2022-11-04 |
Дата публикации | 2022-11-04 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Jesse Long |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |