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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में DataHub Chrome Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |