DataHub Chrome Extension

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

Qu'est-ce que DataHub Chrome Extension ?

DataHub Chrome Extension est une extension Chrome développée par chris.collins, et sa fonction principale est "View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension DataHub Chrome Extension

Téléchargez les fichiers d'extension DataHub Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom DataHub Chrome Extension DataHub Chrome Extension
ID aoenebhmfokhglijmoacfjcnebdpchfj
URL Officiel https://chromewebstore.google.com/detail/datahub-chrome-extension/aoenebhmfokhglijmoacfjcnebdpchfj
Description View DataHub insights about data quality, ownership, documentation, and much more inside your favorite data tools.
Taille du Fichier 1.52 MB
Nombre d'Installations 230
Version Actuelle 0.0.6
Dernière Mise à Jour 2024-01-17
Date de Publication 2023-02-14
Évaluation 5.00/5 Total 1 Évaluations
Développeur chris.collins
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://www.acryldata.io/privacy
Langues Prises en Charge 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"
    ]
}