Closure Tools DevTools

DevTools for Google Closure Tools

What is Closure Tools DevTools?

Closure Tools DevTools is a Chrome extension developed by mugi_uno, and its main feature is "DevTools for Google Closure Tools".

Extension Screenshots

screenshot

Download Closure Tools DevTools Extension CRX File

Download Closure Tools DevTools 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

                        Chrome extension for debugging Google Closure Tools applications.

This extension provides the following functions.

- Check the correspondence between components inheriting from "goog.ui.Component" and screen elements.
- Tracing the execution of a "dispatchEvent" in a class that inherits from "goog.events.EventTarget".

Before you can start using it, you need to prepare it in your application code.

Please refer to the README in the following repository.
https://github.com/mugi-uno/closure-tools-devtools                    

Extension Basic Information

Name Closure Tools DevTools Closure Tools DevTools
ID ccppdkklnjdncedigaakkicpncehojbp
Official URL https://chromewebstore.google.com/detail/closure-tools-devtools/ccppdkklnjdncedigaakkicpncehojbp
Description DevTools for Google Closure Tools
File Size 108 KB
Installation Count 77
Current Version 2.0
Last Updated 2022-08-31
Publish Date 2021-07-09
Developer mugi_uno
Email [email protected]
Payment Type free
Extension Website https://github.com/mugi-uno/closure-tools-devtools
Help Page URL https://github.com/mugi-uno/closure-tools-devtools
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Closure Tools DevTools",
    "description": "DevTools for Google Closure Tools",
    "version": "2.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon-16x16.png",
        "48": "icon-48x48.png",
        "128": "icon-128x128.png"
    },
    "devtools_page": "devtools.html",
    "permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "setupDevTools.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}