Power BI Report Tools
A plugin for Power BI that adds a couple of nifty features to reports that are either lacking or straight up missing.
Power BI Report Toolsとは何ですか?
Power BI Report ToolsはAster ICTによって開発されたChromeの拡張機能で、その主な機能は「A plugin for Power BI that adds a couple of nifty features to reports that are either lacking or straight up missing.」です。
拡張機能のスクリーンショット
Power BI Report Tools拡張機能のCRXファイルをダウンロード
Power BI Report Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
*Now works with the new redesign of Power BI!*
You can:
-Display a report in fullscreen mode.
-Rotate between pages in a report based on a (per page) timer.
-Refresh a report automatically.
These options will stay active even if you switch to another tab, refresh the browser or even restart the browser.
*The refresh option will only work if you are making use of a live dataset* 拡張機能の基本情報
| 名前 | |
| ID | jlblijoolikopdmpohcppphkidcdhkkf |
| 公式URL | https://chrome.google.com/webstore/detail/power-bi-report-tools/jlblijoolikopdmpohcppphkidcdhkkf |
| 説明 | A plugin for Power BI that adds a couple of nifty features to reports that are either lacking or straight up missing. |
| ファイルサイズ | 78.41 KB |
| インストール数 | 4,254 |
| 現在のバージョン | 2.0.11 |
| 最終更新日 | 2021-11-23 |
| 公開日 | 2020-05-19 |
| 評価 | 2.80/5 合計 5 レビュー |
| 開発者 | Aster ICT |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.asterict.nl/ |
| プライバシーポリシーページのURL | https://www.asterict.nl/privacy |
| 対応言語 | en |
| 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": {
"128": "Assets\/img\/128.png",
"64": "Assets\/img\/64.png",
"48": "Assets\/img\/48.png",
"32": "Assets\/img\/32.png",
"24": "Assets\/img\/24.png",
"16": "Assets\/img\/16.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"
} | |