Closure Tools DevTools

DevTools for Google Closure Tools

Closure Tools DevToolsとは何ですか?

Closure Tools DevToolsはmugi_unoによって開発されたChromeの拡張機能で、その主な機能は「DevTools for Google Closure Tools」です。

拡張機能のスクリーンショット

screenshot

Closure Tools DevTools拡張機能のCRXファイルをダウンロード

Closure Tools DevTools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Closure Tools DevTools Closure Tools DevTools
ID ccppdkklnjdncedigaakkicpncehojbp
公式URL https://chromewebstore.google.com/detail/closure-tools-devtools/ccppdkklnjdncedigaakkicpncehojbp
説明 DevTools for Google Closure Tools
ファイルサイズ 108 KB
インストール数 77
現在のバージョン 2.0
最終更新日 2022-08-31
公開日 2021-07-09
開発者 mugi_uno
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/mugi-uno/closure-tools-devtools
ヘルプページのURL https://github.com/mugi-uno/closure-tools-devtools
対応言語 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": [
                ""
            ]
        }
    ]
}