Datalog Console

Datalog DB administration panel for the chrome console

What is Datalog Console?

Datalog Console is a Chrome extension developed by https://homebase.io, and its main feature is "Datalog DB administration panel for the chrome console".

Extension Screenshots

screenshot

Download Datalog Console Extension CRX File

Download Datalog Console extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Datalog Console Datalog Console
ID cfgbajnnabfanfdkhpdhndegpmepnlmb
Official URL https://chromewebstore.google.com/detail/datalog-console/cfgbajnnabfanfdkhpdhndegpmepnlmb
Description Datalog DB administration panel for the chrome console
File Size 232 KB
Installation Count 43
Current Version 0.3.0
Last Updated 2021-06-24
Publish Date 2021-05-17
Rating 5.00/5 Total 2 Ratings
Developer https://homebase.io
Email [email protected]
Payment Type free
Extension Website https://github.com/homebaseio/datalog-console
Help Page URL https://github.com/homebaseio/datalog-console/issues
Privacy Policy Page URL https://homebase.io/privacy
Supported Languages 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"
}