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
官方網址 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
電子郵箱 [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"
    ]
}