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はhttps://displagent.ioによって開発されたChromeの拡張機能で、その主な機能は「Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).」です。
拡張機能のスクリーンショット
Power BI Real-Time Slideshow拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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"
]
}
]
} | |