Power BI Real-Time Slideshow
Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).
Что такое Power BI Real-Time Slideshow?
Power BI Real-Time Slideshow - это расширение Chrome, разработанное https://displagent.io, и его основная функция - "Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).".
Снимки экрана расширения
Скачать файл CRX расширения Power BI Real-Time Slideshow
Скачайте файлы расширений Power BI Real-Time Slideshow в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | dajmfhbgodeengcbfmcacmhmcimpmhpe |
| Официальный URL | https://chromewebstore.google.com/detail/power-bi-real-time-slides/dajmfhbgodeengcbfmcacmhmcimpmhpe |
| Описание | Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only). |
| Размер файла | 154 KB |
| Количество установок | 1,110 |
| Текущая Версия | 2.4.2 |
| Последнее Обновление | 2023-09-13 |
| Дата публикации | 2020-09-22 |
| Рейтинг | 1.00/5 Всего 1 оценок |
| Разработчик | https://displagent.io |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/DMiradakis/Power-BI-Real-Time-Slideshow |
| URL страницы помощи | https://www.displagent.io |
| Поддерживаемые языки | 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"
]
}
]
} | |