Brick Next Developer Tools

Adds Brick Next debugging tools to the Chrome Developer Tools.

Wat is Brick Next Developer Tools?

Brick Next Developer Tools is een Chrome-extensie ontwikkeld door weareoutman, en de belangrijkste functie is "Adds Brick Next debugging tools to the Chrome Developer Tools.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Brick Next Developer Tools

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

                        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.                    

Basisinformatie over de Extensie

Naam Brick Next Developer Tools Brick Next Developer Tools
ID imfbjbfcldgkdbfgeoppalofbjfihpdp
Officiële URL https://chromewebstore.google.com/detail/brick-next-developer-tool/imfbjbfcldgkdbfgeoppalofbjfihpdp
Beschrijving Adds Brick Next debugging tools to the Chrome Developer Tools.
Bestandsgrootte 527 KB
Aantal Installaties 248
Huidige Versie 0.6.10
Laatst Bijgewerkt 2023-10-10
Publicatiedatum 2020-06-05
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar weareoutman
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/easyops-cn/brick-next-devtools
Help Pagina-URL https://github.com/easyops-cn/brick-next-devtools/issues/new
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}