Inspect and view changes in Power BI Report Previewer 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
{
"manifest_version": 2,
"name": "Power BI Report Previewer",
"version": "1.0",
"description": "Preview the Power BI reports in Workspace to make it easier to browse-Developed by Vahid Doustimajd.",
"permissions": [
"activeTab",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https://app.powerbi.com/*"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
],
"browser_action": {
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "vahid@vahidm.com",
"strict_min_version": "57.0"
}
}
}