Brick Next Developer Tools

Adds Brick Next debugging tools to the Chrome Developer Tools.

Qu'est-ce que Brick Next Developer Tools ?

Brick Next Developer Tools est une extension Chrome développée par weareoutman, et sa fonction principale est "Adds Brick Next debugging tools to the Chrome Developer Tools.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Brick Next Developer Tools

Téléchargez les fichiers d'extension Brick Next Developer Tools au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Brick Next Developer Tools Brick Next Developer Tools
ID imfbjbfcldgkdbfgeoppalofbjfihpdp
URL Officiel https://chromewebstore.google.com/detail/brick-next-developer-tool/imfbjbfcldgkdbfgeoppalofbjfihpdp
Description Adds Brick Next debugging tools to the Chrome Developer Tools.
Taille du Fichier 527 KB
Nombre d'Installations 248
Version Actuelle 0.6.10
Dernière Mise à Jour 2023-10-10
Date de Publication 2020-06-05
Évaluation 5.00/5 Total 4 Évaluations
Développeur weareoutman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/easyops-cn/brick-next-devtools
URL de la Page d'Aide https://github.com/easyops-cn/brick-next-devtools/issues/new
Langues Prises en Charge 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": [
                ""
            ]
        }
    ]
}