Power BI Navigator

Get more done in Power BI

Power BI Navigatorとは何ですか?

Power BI NavigatorはDanny Summerlinによって開発されたChromeの拡張機能で、その主な機能は「Get more done in Power BI」です。

拡張機能のスクリーンショット

screenshot

Power BI Navigator拡張機能のCRXファイルをダウンロード

Power BI Navigator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        An easier way to navigate Power BI! This extension helps you get to any workspace, reports, dataflow, or dataset more quickly, and adds some color back into Power BI.

Open the Navigator and
- [New Permission] Can now save some settings, like the theme toggle, needs Storage permission to save preferences
- Go to your Home page with "Home"
- Commands looking weird? Run "Refresh Metadata" to make sure you have what you need
- Adds colors to the icons in resource listings

** You can hold shift or control when you press enter or click your mouse to open the selected item in a new tab **

Default shortcut key (use Command instead of Control on Mac, and/or customize your options at chrome://extensions/shortcuts)

Control + Shift + P: Navigator Bar

Contribute to this extension at https://github.com/dannysummerlin/powerbi-navigator

Maintainer(s):
[Danny Summerlin](http://summerlin.co)
open to others!

## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)

## Privacy Policy
This extension only runs locally in communication with your Power BI tenant. No data is collected from any user, nor is extension activity tracked or reported to a third-party.

## Terms of Service
This extension is not intended to support the work of any individual or organization that is discriminatory or outright illegal.                    

拡張機能の基本情報

名前 Power BI Navigator Power BI Navigator
ID cbmjohnaegbagpbbjcmklpebfpilhjab
公式URL https://chromewebstore.google.com/detail/power-bi-navigator/cbmjohnaegbagpbbjcmklpebfpilhjab
説明 Get more done in Power BI
ファイルサイズ 169 KB
インストール数 51
現在のバージョン 1.2.8
最終更新日 2023-07-22
公開日 2023-07-21
開発者 Danny Summerlin
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Power BI Navigator",
    "version": "1.2.8",
    "manifest_version": 3,
    "description": "Get more done in Power BI",
    "icons": {
        "16": "images\/pbi-navigator16.png",
        "32": "images\/pbi-navigator32.png",
        "48": "images\/pbi-navigator48.png",
        "128": "images\/pbi-navigator128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/ajax-loader.gif",
                "images\/pbi-navigator128.png",
                "images\/Dataflow.svg",
                "images\/Dataset.svg",
                "images\/Workspace.svg",
                "images\/Report.svg",
                "getToken.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "css": [
                "styles\/main.css"
            ],
            "matches": [
                "https:\/\/*.powerbi.com\/*",
                "https:\/\/*.powerapps.com\/*",
                "https:\/\/*.analysis.windows.net\/*"
            ],
            "all_frames": true,
            "js": [
                "contentScript.js",
                "shared.js",
                "scripts\/pluralize.js",
                "popup.js"
            ],
            "run_at": "document_end"
        }
    ],
    "commands": {
        "showSearchBox": {
            "description": "Open Search Box",
            "suggested_key": {
                "default": "Ctrl+Shift+P"
            }
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "action": {
        "default_icon": "images\/pbi-navigator32.png",
        "default_popup": "popup.html",
        "default_title": "Power BI Navigator"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self'; connect-src 'self' https:\/\/*.powerbi.com"
    },
    "host_permissions": [
        "https:\/\/*.powerbi.com\/*",
        "https:\/\/*.powerapps.com\/*",
        "https:\/\/*.analysis.windows.net\/*"
    ]
}