Power BI Report Previewer

Power BI Report Previewer

Preview the Power BI reports in Workspace to make it easier to browse-Developed by Vahid Doustimajd.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Power BI Report Previewer",
  "version": "1.1.0",
  "description": "Preview the Power BI reports in Workspace to make it easier to browse-Developed by Vahid Doustimajd.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.powerbi.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}