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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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\/*"
    ]
}