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"
]
}
]
} | |