Datalog Console

Datalog DB administration panel for the chrome console

Was ist Datalog Console?

Datalog Console ist eine Chrome-Erweiterung, die von https://homebase.io entwickelt wurde, und ihr Hauptmerkmal ist "Datalog DB administration panel for the chrome console".

Erweiterungsscreenshots

screenshot

Datalog Console-Erweiterungs-CRX-Datei herunterladen

Laden Sie Datalog Console-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Inspect any Datalog database in homebase-react v0.7.0 or above.

General support for Datalog databases like Datascript and Datahike is in development.

Roadmap: https://github.com/homebaseio/datalog-console/projects/1                    

Grundlegende Informationen zur Erweiterung

Name Datalog Console Datalog Console
ID cfgbajnnabfanfdkhpdhndegpmepnlmb
Offizielle URL https://chromewebstore.google.com/detail/datalog-console/cfgbajnnabfanfdkhpdhndegpmepnlmb
Beschreibung Datalog DB administration panel for the chrome console
Dateigröße 232 KB
Installationsanzahl 43
Aktuelle Version 0.3.0
Letztes Update 2021-06-24
Veröffentlichungsdatum 2021-05-17
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://homebase.io
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/homebaseio/datalog-console
Hilfeseite URL https://github.com/homebaseio/datalog-console/issues
URL der Datenschutzrichtlinien-Seite https://homebase.io/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Datalog DB administration panel for the chrome console",
    "devtools_page": "devtools.html",
    "permissions": [
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/default\/icon-16.png",
            "32": "images\/default\/icon-32.png",
            "48": "images\/default\/icon-48.png",
            "128": "images\/default\/icon-128.png"
        },
        "default_popup": "popups\/disabled.html"
    },
    "name": "Datalog Console",
    "background": {
        "scripts": [
            "out\/shared.js",
            "out\/background.js"
        ],
        "persistent": false
    },
    "externally_connectable": {
        "ids": [
            "*"
        ]
    },
    "icons": {
        "16": "images\/default\/icon-16.png",
        "32": "images\/default\/icon-32.png",
        "48": "images\/default\/icon-48.png",
        "128": "images\/default\/icon-128.png"
    },
    "content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval' http:\/\/localhost:9610; connect-src * data: blob: filesystem:; style-src 'self' data: chrome-extension-resource: 'unsafe-inline'; img-src 'self' data: chrome-extension-resource:; frame-src 'self' data: chrome-extension-resource:; font-src 'self' data: chrome-extension-resource:; media-src * data: blob: filesystem:;",
    "content_scripts": [
        {
            "js": [
                "out\/shared.js",
                "out\/content-script.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 2,
    "version": "0.3.0"
}