DataHub Chrome Extension
View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.
Wat is DataHub Chrome Extension?
DataHub Chrome Extension is een Chrome-extensie ontwikkeld door chris.collins, en de belangrijkste functie is "View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.".
Extensie Screenshots
Download het CRX-bestand van de extensie DataHub Chrome Extension
Download DataHub Chrome Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | DataHub Chrome Extension |
ID | aoenebhmfokhglijmoacfjcnebdpchfj |
Officiële URL | https://chromewebstore.google.com/detail/datahub-chrome-extension/aoenebhmfokhglijmoacfjcnebdpchfj |
Beschrijving | View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools. |
Bestandsgrootte | 1.52 MB |
Aantal Installaties | 230 |
Huidige Versie | 0.0.6 |
Laatst Bijgewerkt | 2024-01-17 |
Publicatiedatum | 2023-02-14 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | chris.collins |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://www.acryldata.io/privacy |
Ondersteunde Talen | 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" ] } |