Inspect and view changes in Power BI Report Tools 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",
"action": {
"default_icon": {
"128": "Assets/img/128.png"
},
"default_popup": "popup.html",
"default_title": "Power BI Report Tools"
},
"background": {
"service_worker": "Assets/JS/background.js"
},
"content_scripts": [
{
"js": [
"Assets/JS/pagenames.js"
],
"matches": [
"https://*.powerbi.com/groups/*/reports/*/*"
]
},
{
"js": [
"Assets/JS/fullscreen.js"
],
"matches": [
"https://*.powerbi.com/groups/*/reports/*/*"
],
"run_at": "document_start"
},
{
"js": [
"Assets/JS/refresh.js"
],
"matches": [
"https://*.powerbi.com/groups/*/reports/*/*"
],
"run_at": "document_idle"
},
{
"js": [
"Assets/JS/rotate.js"
],
"matches": [
"https://*.powerbi.com/groups/*/reports/*/*"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"Assets/css/*.css",
"Assets/img/*.png",
"Assets/JS/*.js"
],
"matches": [
"https://app.powerbi.com/*"
]
}
],
"description": "A plugin for Power BI that adds a couple of nifty features to reports that are either lacking or straight up missing.",
"icons": {
"16": "Assets/img/16.png",
"24": "Assets/img/24.png",
"32": "Assets/img/32.png",
"48": "Assets/img/48.png",
"64": "Assets/img/64.png",
"128": "Assets/img/128.png"
},
"manifest_version": 3,
"name": "Power BI Report Tools",
"permissions": [
"tabs",
"activeTab",
"storage",
"scripting"
],
"host_permissions": [
"https://*.powerbi.com/groups/*/reports/*/*"
],
"version": "2.0.11"
}