Power BI Navigator

Get more done in Power BI

Cos'è Power BI Navigator?

Power BI Navigator è un'estensione di Chrome sviluppata da Danny Summerlin, e la sua funzione principale è "Get more done in Power BI".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Power BI Navigator

Scarica i file di estensione Power BI Navigator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Power BI Navigator Power BI Navigator
ID cbmjohnaegbagpbbjcmklpebfpilhjab
URL Ufficiale https://chromewebstore.google.com/detail/power-bi-navigator/cbmjohnaegbagpbbjcmklpebfpilhjab
Descrizione Get more done in Power BI
Dimensione del File 169 KB
Conteggio Installazioni 51
Versione Corrente 1.2.8
Ultimo Aggiornamento 2023-07-22
Data di Pubblicazione 2023-07-21
Sviluppatore Danny Summerlin
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}