Power BI Navigator

Get more done in Power BI

Power BI Navigator क्या है?

Power BI Navigator Danny Summerlin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get more done in Power BI"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Power BI Navigator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}