Examine source code of Power BI Auto Refresh

Inspect and view changes in Power BI Auto Refresh source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Power BI Auto Refresh",
  "version": "1.2.1",
  "description": "Periodically refresh any Power BI report or dashboard",
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://*.powerbi.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.powerbi.com/*"
      ],
      "js": [
        "/js/content.js"
      ],
      "css": []
    }
  ],
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_title": "Power BI Auto Refresh",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/pbi16t.png",
    "32": "images/pbi32t.png",
    "48": "images/pbi48t.png",
    "128": "images/pbi128t.png"
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}