Gadget Inspector: ClojureScript Data Browser

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

Wat is Gadget Inspector: ClojureScript Data Browser?

Gadget Inspector: ClojureScript Data Browser is een Chrome-extensie ontwikkeld door Unknown, en de belangrijkste functie is "Browse the contents of ClojureScript data, browse and restore historic atom states.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Gadget Inspector: ClojureScript Data Browser

Download Gadget Inspector: ClojureScript Data Browser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Gadget Inspector: ClojureScript Data Browser Gadget Inspector: ClojureScript Data Browser
ID bdkifiannmjgeedjpmhpaimcnkgfadli
Officiële URL https://chromewebstore.google.com/detail/gadget-inspector-clojures/bdkifiannmjgeedjpmhpaimcnkgfadli
Beschrijving Browse the contents of ClojureScript data, browse and restore historic atom states.
Bestandsgrootte 276 KB
Aantal Installaties 40
Huidige Versie 0.2019.12.10
Laatst Bijgewerkt 2019-12-12
Publicatiedatum 2019-12-11
Ontwikkelaar Unknown
Betalingswijze free
Ondersteunde Talen 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
        }
    ]
}