Inspect and view changes in PowerBI Matrix Export 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "PowerBI Matrix Export",
"description": "export the report",
"version": "1.0.3",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"run_at": "document_idle",
"all_frames": true,
"js": [
"add_css.js"
]
}
],
"icons": {
"16": "/images/tool16.png",
"32": "/images/tool32.png",
"48": "/images/tool48.png",
"128": "/images/tool128.png"
}
}