Metaphor Extension

Get more from Metaphor! Automatically show data insights without context switching. Boost productivity with Metaphor's extension

Metaphor Extension란 무엇입니까?

Metaphor Extension은(는) Metaphor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get more from Metaphor! Automatically show data insights without context switching. Boost productivity with Metaphor's extension"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Metaphor Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        [ In Preview ]

Metaphor Extension for Chrome allows BI Dashboard users to easily trust data and communicate directly with their enterprise data team.

The extension enables BI Users to easily see if the data they are looking at is trustworthy, look up and understand official definitions of business terms and metrics in the report, and communicate directly with the enterprise data team responsible for that report. No more hanging out on Teams/Slack, wondering if anyone will answer your questions.

Here’s what you can do with the Metaphor Extension :

⏵ Investigate trust signals about the dashboard: Get an immediate view of any official certification tags your enterprise data team might have created to indicate the trustworthiness of the report you are looking at.

⏵ Communicate with authoritative data team members: Request access, get clarifications, or generally ask a question and know that the right people in your enterprise’s data team will get back to you.

⏵ See how your colleagues use the dashboard: See other conversations your team members or others across your enterprise have had about this dashboard - collaborate across silos.                    

확장 프로그램 기본 정보

이름 Metaphor Extension Metaphor Extension
ID plnccggnlbchcniddablamdddjaofdal
공식 URL https://chromewebstore.google.com/detail/metaphor-extension/plnccggnlbchcniddablamdddjaofdal
설명 Get more from Metaphor! Automatically show data insights without context switching. Boost productivity with Metaphor's extension
파일 크기 357 KB
설치 횟수 87
현재 버전 0.3.5
최근 업데이트 2023-10-20
출시 날짜 2023-08-10
평점 5.00/5 총 7 개의 평점
개발자 Metaphor
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://metaphor.io/
개인정보 보호 정책 페이지 URL https://metaphor.io/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Metaphor Extension",
    "description": "Get more from Metaphor! Automatically show data insights without context switching. Boost productivity with Metaphor's extension",
    "version": "0.3.5",
    "manifest_version": 3,
    "permissions": [
        "activeTab",
        "storage",
        "tabs",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentPage.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_title": "Metaphor Extension",
        "default_icon": {
            "16": "metaphor16.png"
        }
    },
    "options_ui": {
        "page": "option.html",
        "open_in_tab": true
    },
    "icons": {
        "16": "metaphor16.png",
        "48": "metaphor48.png",
        "128": "metaphor128.png"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "*.png",
                "*.svg"
            ]
        }
    ]
}