Power BI Navigator

Get more done in Power BI

Co je Power BI Navigator?

Power BI Navigator je rozšíření Chrome vyvinuté Danny Summerlin, a jeho hlavní funkcí je „Get more done in Power BI“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Power BI Navigator

Stáhněte si soubory rozšíření Power BI Navigator ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Power BI Navigator Power BI Navigator
ID cbmjohnaegbagpbbjcmklpebfpilhjab
Oficiální URL https://chromewebstore.google.com/detail/power-bi-navigator/cbmjohnaegbagpbbjcmklpebfpilhjab
Popis Get more done in Power BI
Velikost souboru 169 KB
Počet instalací 51
Aktuální Verze 1.2.8
Poslední Aktualizace 2023-07-22
Datum Vydání 2023-07-21
Vývojář Danny Summerlin
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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\/*"
    ]
}