Gadget Inspector: ClojureScript Data Browser

Browse the contents of ClojureScript data, browse and restore historic atom states.

What is Gadget Inspector: ClojureScript Data Browser?

Gadget Inspector: ClojureScript Data Browser is a Chrome extension developed by Unknown, and its main feature is "Browse the contents of ClojureScript data, browse and restore historic atom states.".

Extension Screenshots

screenshot

Download Gadget Inspector: ClojureScript Data Browser Extension CRX File

Download Gadget Inspector: ClojureScript Data Browser 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

                        Gadget inspector is a devtools extension that adds a panel where you can browse any data in your running application that is passed through `gadget.inspector/inspect` - a function from the companion library - https://github.com/cjohansen/gadget-inspector.                    

Extension Basic Information

Name Gadget Inspector: ClojureScript Data Browser Gadget Inspector: ClojureScript Data Browser
ID bdkifiannmjgeedjpmhpaimcnkgfadli
Official URL https://chromewebstore.google.com/detail/gadget-inspector-clojures/bdkifiannmjgeedjpmhpaimcnkgfadli
Description Browse the contents of ClojureScript data, browse and restore historic atom states.
File Size 276 KB
Installation Count 40
Current Version 0.2019.12.10
Last Updated 2019-12-12
Publish Date 2019-12-11
Developer Unknown
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gadget Inspector: ClojureScript Data Browser",
    "version": "0.2019.12.10",
    "description": "Browse the contents of ClojureScript data, browse and restore historic atom states.",
    "manifest_version": 2,
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "icons": {
        "24": "icon-24.png",
        "36": "icon-36.png",
        "48": "icon-48.png",
        "128": "icon-128.png",
        "256": "icon-256.png"
    },
    "permissions": [
        "activeTab",
        "file:\/\/\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "api.js"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_globs": [
                "https:\/\/www.google*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}