DataHub Chrome Extension

View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.

Cos'è DataHub Chrome Extension?

DataHub Chrome Extension è un'estensione di Chrome sviluppata da chris.collins, e la sua funzione principale è "View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione DataHub Chrome Extension

Scarica i file di estensione DataHub Chrome Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome DataHub Chrome Extension DataHub Chrome Extension
ID aoenebhmfokhglijmoacfjcnebdpchfj
URL Ufficiale https://chromewebstore.google.com/detail/datahub-chrome-extension/aoenebhmfokhglijmoacfjcnebdpchfj
Descrizione View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.
Dimensione del File 1.52 MB
Conteggio Installazioni 230
Versione Corrente 0.0.6
Ultimo Aggiornamento 2024-01-17
Data di Pubblicazione 2023-02-14
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore chris.collins
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://www.acryldata.io/privacy
Lingue Supportate 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"
    ]
}