GoogleChrome DevTools extension for Closure Tools applications.
from Chrome Web Store
🔗 Demo page : https://mugi-uno.github.io/closure-tools-devtools/
Add the following code to your application
goog.require("goog.ui.Component");
goog.require("goog.events.EventTarget");
if (window["__CLOSURE_TOOLS_DEVTOOLS__"]) {
window["__CLOSURE_TOOLS_DEVTOOLS__"].setup();
}
If you are using Closure Compiler, you can also add src/activator/setup.js
to dependencies and add the following code to your application.
goog.require("closuretoolsdevtools.setup");
if (goog.DEBUG) {
closuretoolsdevtools.setup();
}
MIT