DataHub Chrome Extension

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

Apa itu DataHub Chrome Extension?

DataHub Chrome Extension adalah ekstensi Chrome yang dikembangkan oleh chris.collins, dan fitur utamanya adalah "View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi DataHub Chrome Extension

Unduh file ekstensi DataHub Chrome Extension dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama DataHub Chrome Extension DataHub Chrome Extension
ID aoenebhmfokhglijmoacfjcnebdpchfj
URL Resmi https://chromewebstore.google.com/detail/datahub-chrome-extension/aoenebhmfokhglijmoacfjcnebdpchfj
Deskripsi View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.
Ukuran File 1.52 MB
Jumlah Instalasi 230
Versi Saat Ini 0.0.6
Terakhir Diperbarui 2024-01-17
Tanggal Publikasi 2023-02-14
Penilaian 5.00/5 Total 1 Penilaian
Pengembang chris.collins
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://www.acryldata.io/privacy
Bahasa yang Didukung 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"
    ]
}