Brick Next Developer Tools

Adds Brick Next debugging tools to the Chrome Developer Tools.

Was ist Brick Next Developer Tools?

Brick Next Developer Tools ist eine Chrome-Erweiterung, die von weareoutman entwickelt wurde, und ihr Hauptmerkmal ist "Adds Brick Next debugging tools to the Chrome Developer Tools.".

Erweiterungsscreenshots

screenshot
screenshot

Brick Next Developer Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Brick Next Developer Tools-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

                        Brick Next Developer Tools is a Chrome DevTools extension for Brick Next.

Brick Next is a web-frontend framework building on top of web components, developed by UWinTech China (优维科技), also known as EasyOps.

This extension allows developers to inspect the framework rendering tree which consists of custom elements, including their customized properties and events. And it also allows developers to monitor specific data processing of the framework.

Developers will get a new tab in Chrome DevTools: "Bricks". By default it shows you the custom elements tree, by selecting one of them, you can inspect its customized properties and events.

By switching to "Evaluations" or "Transformations", you can monitor the specific data processing, including the input, the result and the context.                    

Grundlegende Informationen zur Erweiterung

Name Brick Next Developer Tools Brick Next Developer Tools
ID imfbjbfcldgkdbfgeoppalofbjfihpdp
Offizielle URL https://chromewebstore.google.com/detail/brick-next-developer-tool/imfbjbfcldgkdbfgeoppalofbjfihpdp
Beschreibung Adds Brick Next debugging tools to the Chrome Developer Tools.
Dateigröße 527 KB
Installationsanzahl 248
Aktuelle Version 0.6.10
Letztes Update 2023-10-10
Veröffentlichungsdatum 2020-06-05
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler weareoutman
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/easyops-cn/brick-next-devtools
Hilfeseite URL https://github.com/easyops-cn/brick-next-devtools/issues/new
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Brick Next Developer Tools",
    "description": "Adds Brick Next debugging tools to the Chrome Developer Tools.",
    "version": "0.6.10",
    "icons": {
        "128": "icons\/128-production.png"
    },
    "devtools_page": "build\/devtools.html",
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "build\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "build\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "build\/hook.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}