Power BI Real-Time Slideshow

Power BI Real-Time Slideshow

Display Power BI reports as refreshing, rotating slideshows in the Power BI Service (old UI mode only).

Merlin
Additional files are visible only to premium users

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