DataHub Chrome Extension
View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.
What is DataHub Chrome Extension?
DataHub Chrome Extension is a Chrome extension developed by chris.collins, and its main feature is "View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.".
Extension Screenshots
Download DataHub Chrome Extension Extension CRX File
Download DataHub Chrome Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | DataHub Chrome Extension |
ID | aoenebhmfokhglijmoacfjcnebdpchfj |
Official URL | https://chromewebstore.google.com/detail/datahub-chrome-extension/aoenebhmfokhglijmoacfjcnebdpchfj |
Description | View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools. |
File Size | 1.52 MB |
Installation Count | 230 |
Current Version | 0.0.6 |
Last Updated | 2024-01-17 |
Publish Date | 2023-02-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | chris.collins |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.acryldata.io/privacy |
Supported Languages | 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" ] } |