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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |