DataHub Chrome Extension

View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.

DataHub Chrome Extensionとは何ですか?

DataHub Chrome Extensionはchris.collinsによって開発されたChromeの拡張機能で、その主な機能は「View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.」です。

拡張機能のスクリーンショット

screenshot
screenshot

DataHub Chrome Extension拡張機能のCRXファイルをダウンロード

DataHub Chrome Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        The Acryl DataHub Chrome extension allows you to get insights about your data assets from DataHub while viewing source data itself. Use this Chrome extension while browsing your Looker, Tableau, BigQuery, Power BI, or Databricks assets in order to determine if upstream data is healthy, read documentation, discover ownership, and more.                    

拡張機能の基本情報

名前 DataHub Chrome Extension DataHub Chrome Extension
ID aoenebhmfokhglijmoacfjcnebdpchfj
公式URL https://chromewebstore.google.com/detail/datahub-chrome-extension/aoenebhmfokhglijmoacfjcnebdpchfj
説明 View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.
ファイルサイズ 1.52 MB
インストール数 230
現在のバージョン 0.0.6
最終更新日 2024-01-17
公開日 2023-02-14
評価 5.00/5 合計 1 レビュー
開発者 chris.collins
Eメール [email protected]
支払い方法 free
プライバシーポリシーページのURL https://www.acryldata.io/privacy
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DataHub Chrome Extension",
    "description": "View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.",
    "version": "0.0.6",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html?popup=true",
        "default_icon": "acrylLogoMonochrome.png",
        "default_title": "DataHub Chrome Extension"
    },
    "options_page": "index.html?popup=false",
    "options_ui": {
        "page": "index.html?popup=false",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "backgroundObserver.js"
            ]
        }
    ],
    "icons": {
        "16": "acrylLogoMonochrome.png",
        "48": "acrylLogoMonochrome.png",
        "128": "acrylLogoMonochrome.png"
    },
    "permissions": [
        "storage",
        "nativeMessaging"
    ]
}