PowerBI Direct Report Redirector

PowerBI Direct Report Redirector

Redirects the user to the Power BI Report Viewer URL found in the iframe src attribute.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "PowerBI Direct Report Redirector",
  "version": "2.2",
  "description": "Redirects the user to the Power BI Report Viewer URL found in the iframe src attribute.",
  "icons": {
    "48": "icon48.png"
  },
  "action": {
    "default_icon": {
      "48": "icon48.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ]
}