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.”。
扩展截图
下载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 |
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 |
电子邮箱 | [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" ] } |