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 - это расширение Chrome, разработанное chris.collins, и его основная функция - "View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.".
Снимки экрана расширения
Скачать файл CRX расширения DataHub Chrome Extension
Скачайте файлы расширений 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" ] } |