Closure Tools DevTools

DevTools for Google Closure Tools

Closure Tools DevToolsคืออะไร?

Closure Tools DevTools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mugi_uno และคุณลักษณะหลักของมันคือ "DevTools for Google Closure Tools"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Closure Tools DevTools

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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": [
                ""
            ]
        }
    ]
}